From f542a2e8cc3c3bb1cafeadf4fe915a4482297243 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 20 Apr 2022 03:00:42 +0000 Subject: [PATCH] Condense my flakes --- flake.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 35a4b42..de3e4b5 100644 --- a/flake.nix +++ b/flake.nix @@ -30,19 +30,13 @@ nixosConfigurations = { "2maccabees" = inputs.nixpkgs.lib.nixosSystem { system = "aarch64-linux"; - specialArgs = { - nixpkgs = inputs.nixpkgs; - agenix = inputs.agenix; - }; + specialArgs = inputs; modules = mods "2maccabees"; }; "linode" = inputs.nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = { - nixpkgs = inputs.nixpkgs; - agenix = inputs.agenix; - }; + specialArgs = inputs; modules = mods "linode"; }; };