diff options
| author | Seth Flynn <[email protected]> | 2025-01-30 13:58:14 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-01-30 13:58:27 -0500 |
| commit | 4f6df1cb6f9705d98b4d648cd73f98896c0e081b (patch) | |
| tree | 5dbff2047961fac4e29fa89085bdac912f1109dd | |
| parent | 13cb59dafcb1336104a57ecfb7e746bd16a3e3d1 (diff) | |
flake.lock: fix getchpkgs input
| -rw-r--r-- | flake.lock | 25 | ||||
| -rw-r--r-- | flake.nix | 7 | ||||
| -rw-r--r-- | users/seth/programs/git.nix | 2 |
3 files changed, 4 insertions, 30 deletions
@@ -192,13 +192,13 @@ "lastModified": 1738244694, "narHash": "sha256-Whby1065h8T3VGaaK4r5WEt0uow7ilOV9NHQewVGQnI=", "owner": "getchoo", - "repo": "nix-exprs", + "repo": "getchpkgs", "rev": "83a7516b7f38b20265709e77daf387b62b488a88", "type": "github" }, "original": { "owner": "getchoo", - "repo": "nix-exprs", + "repo": "getchpkgs", "type": "github" } }, @@ -310,26 +310,6 @@ "type": "github" } }, - "nix-exprs": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1737773962, - "narHash": "sha256-9SFHBauH0bi9lX5DlienIOPfmYpwyWaPRP91rzKoP3U=", - "owner": "getchoo", - "repo": "nix-exprs", - "rev": "baa8923dc7ecf5777be406ee4ce1de60e826d6e3", - "type": "github" - }, - "original": { - "owner": "getchoo", - "repo": "nix-exprs", - "type": "github" - } - }, "nix-filter": { "locked": { "lastModified": 1731533336, @@ -483,7 +463,6 @@ "krunner-nix": "krunner-nix", "lanzaboote": "lanzaboote", "nix-darwin": "nix-darwin", - "nix-exprs": "nix-exprs", "nix-index-database": "nix-index-database", "nixos-wsl": "nixos-wsl", "nixpkgs": "nixpkgs", @@ -86,7 +86,7 @@ }; getchpkgs = { - url = "github:getchoo/nix-exprs"; + url = "github:getchoo/getchpkgs"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -115,11 +115,6 @@ }; }; - nix-exprs = { - url = "github:getchoo/nix-exprs"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - nix-index-database = { url = "github:nix-community/nix-index-database"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/users/seth/programs/git.nix b/users/seth/programs/git.nix index 74d0c70..e2f7ab0 100644 --- a/users/seth/programs/git.nix +++ b/users/seth/programs/git.nix @@ -9,7 +9,7 @@ let cfg = config.seth.programs.git; in { - imports = [ inputs.nix-exprs.homeModules.riff ]; + imports = [ inputs.getchpkgs.homeModules.riff ]; options.seth.programs.git = { enable = lib.mkEnableOption "Git configuration settings" // { |
