summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-11 14:33:38 -0500
committerseth <[email protected]>2023-12-11 14:33:38 -0500
commit534dad90001ff5a7d492fda7ce3a117d1d011e71 (patch)
tree272211cdd7347cca7542c67e21ddbe8e35157fa4
parent8fa4c973860ebdcc4747ef1908f93ce546aa6fed (diff)
flake: remove getchoo input
-rw-r--r--flake.lock21
-rw-r--r--flake.nix5
-rw-r--r--modules/shared/nix.nix2
-rw-r--r--users/seth/home.nix4
4 files changed, 3 insertions, 29 deletions
diff --git a/flake.lock b/flake.lock
index 38a4a91..ec6be88 100644
--- a/flake.lock
+++ b/flake.lock
@@ -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",
diff --git a/flake.nix b/flake.nix
index 1c5446d..2e6ca6a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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];
}