From 7ebf68f2f4849aae86ec4f310579ee1ecff3222b Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 27 Nov 2024 11:34:11 +0100 Subject: [PATCH] feat: adds agenix to sakura/violet --- flake.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 1382460..10d08da 100644 --- a/flake.nix +++ b/flake.nix @@ -53,17 +53,18 @@ }; sakura = nixpkgs.lib.nixosSystem { inherit system; - modules = [( - import ./hosts/sakura + modules = [ + (import ./hosts/sakura) agenix.nixosModules.default - )]; + ]; specialArgs = { host="sakura"; inherit self inputs username ; }; }; violet = nixpkgs.lib.nixosSystem { inherit system; - modules = [( - import ./hosts/violet - )]; + modules = [ + (import ./hosts/violet) + agenix.nixosModules.default + ]; specialArgs = { host="violet"; inherit self inputs username; }; };