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 {
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; };
};