summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-08-12 17:30:05 -0400
committerseth <[email protected]>2023-08-12 17:32:35 -0400
commit547b88bfdd93a700636a1497878f2a082f95e765 (patch)
tree95b6cd8e00050499e8009d16fbc402119bcb97ce /flake.nix
parentc4e555842d79e9abd2a432c4fa9eb6722b214141 (diff)
flake: dedup inputs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 79a7867..76c116f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -6,13 +6,11 @@
"https://getchoo.cachix.org" # personal cache
"https://cache.garnix.io" # garnix cache
"https://nix-community.cachix.org" # nix-community
- "https://wurzelpfropf.cachix.org" # ragenix
];
extra-trusted-public-keys = [
"getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
- "wurzelpfropf.cachix.org-1:ilZwK5a6wJqVr7Fyrzp4blIEkGK+LJT0QrpWr1qBNq0="
];
};
@@ -24,6 +22,13 @@
inputs.nixpkgs.follows = "nixpkgs";
};
+ agenix = {
+ url = "github:ryantm/agenix";
+ inputs.nixpkgs.follows = "nixpkgs";
+ inputs.darwin.follows = "darwin";
+ inputs.home-manager.follows = "home-manager";
+ };
+
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
@@ -64,6 +69,7 @@
lanzaboote = {
url = "github:nix-community/lanzaboote";
+ inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-compat.follows = "flake-compat";
inputs.flake-parts.follows = "flake-parts";
inputs.flake-utils.follows = "flake-utils";
@@ -100,6 +106,8 @@
ragenix = {
url = "github:yaxitech/ragenix";
+ inputs.nixpkgs.follows = "nixpkgs";
+ inputs.agenix.follows = "agenix";
inputs.flake-utils.follows = "flake-utils";
};
};