Remove deprecated "system" parameter.

This commit is contained in:
Tom Alexander
2025-11-19 23:26:07 -05:00
parent eebbf9f4aa
commit ff23d8ad20
8 changed files with 3 additions and 8 deletions

View File

@@ -63,7 +63,6 @@
nixosConfigs = builtins.mapAttrs (
hostname: nodeConfig: format:
nixpkgs.lib.nixosSystem {
inherit (nodeConfig) system;
specialArgs = {
inherit self;
@@ -84,6 +83,9 @@
./configuration.nix
(./. + "/hosts/${hostname}")
(./. + "/formats/${format}.nix")
{
config.nixpkgs.hostPlatform.system = nodeConfig.system;
}
];
}
) nodes;