diff options
| -rw-r--r-- | flake.lock | 21 | ||||
| -rw-r--r-- | flake.nix | 5 | ||||
| -rw-r--r-- | modules/shared/nix.nix | 2 | ||||
| -rw-r--r-- | users/seth/home.nix | 4 |
4 files changed, 3 insertions, 29 deletions
@@ -218,26 +218,6 @@ "type": "github" } }, - "getchoo": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1702082523, - "narHash": "sha256-EMUahY562bz3VLF8AhbqYuQwi054WAzuuMvvXe4STpc=", - "owner": "getchoo", - "repo": "nix-exprs", - "rev": "9595c225f1535845f5f1d6542389cec6be41f755", - "type": "github" - }, - "original": { - "owner": "getchoo", - "repo": "nix-exprs", - "type": "github" - } - }, "getchvim": { "inputs": { "nixpkgs": [ @@ -563,7 +543,6 @@ "catppuccin": "catppuccin", "darwin": "darwin", "firefox-addons": "firefox-addons", - "getchoo": "getchoo", "getchvim": "getchvim", "hm": "hm", "lanzaboote": "lanzaboote", @@ -54,11 +54,6 @@ }; }; - getchoo = { - url = "github:getchoo/nix-exprs"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - getchvim = { url = "github:getchoo/getchvim"; inputs = { diff --git a/modules/shared/nix.nix b/modules/shared/nix.nix index 7ca3f1d..d88285d 100644 --- a/modules/shared/nix.nix +++ b/modules/shared/nix.nix @@ -32,7 +32,7 @@ }; nixpkgs = { - overlays = with inputs; [getchoo.overlays.default self.overlays.default]; + overlays = [self.overlays.default]; config.allowUnfree = lib.mkDefault true; }; } diff --git a/users/seth/home.nix b/users/seth/home.nix index 2312169..a3529b0 100644 --- a/users/seth/home.nix +++ b/users/seth/home.nix @@ -1,7 +1,7 @@ { config, pkgs, - inputs, + self, ... }: { imports = [./.]; @@ -14,5 +14,5 @@ else "/home/${config.home.username}"; }; - nixpkgs.overlays = with inputs; [getchoo.overlays.default self.overlays.default]; + nixpkgs.overlays = [self.overlays.default]; } |
