feat: adds agenix to sakura/violet

This commit is contained in:
Ahwx 2024-11-27 11:34:11 +01:00
parent 6fd3c0a32d
commit 7ebf68f2f4

View file

@ -53,17 +53,18 @@
}; };
sakura = nixpkgs.lib.nixosSystem { sakura = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = [( modules = [
import ./hosts/sakura (import ./hosts/sakura)
agenix.nixosModules.default agenix.nixosModules.default
)]; ];
specialArgs = { host="sakura"; inherit self inputs username ; }; specialArgs = { host="sakura"; inherit self inputs username ; };
}; };
violet = nixpkgs.lib.nixosSystem { violet = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = [( modules = [
import ./hosts/violet (import ./hosts/violet)
)]; agenix.nixosModules.default
];
specialArgs = { host="violet"; inherit self inputs username; }; specialArgs = { host="violet"; inherit self inputs username; };
}; };