This commit is contained in:
smayzy
2025-08-24 22:27:49 +02:00
parent 771a2b88a7
commit 0ce0d549ba
8 changed files with 76 additions and 28 deletions
+10 -2
View File
@@ -38,9 +38,17 @@
inputs.agenix.nixosModules.default
];
mkHost = hostConfig:
mkHost =
hostConfig:
nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system overlays agenix; };
specialArgs = {
inherit
inputs
system
overlays
agenix
;
};
modules = [ hostConfig ] ++ sharedModules;
};
in