diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-07 18:36:54 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-07 18:36:54 +0200 |
commit | 8186202d153602c80423bbe27570e00c538e507f (patch) | |
tree | f19603becc769f5ff4faa80885a1014198851a84 /flake | |
parent | gitignore: alphabetical ordering (diff) | |
download | nix-config-8186202d153602c80423bbe27570e00c538e507f.tar.gz nix-config-8186202d153602c80423bbe27570e00c538e507f.zip |
flake/nixosConfigurations: rename nixosConfig to mkNixosHost
Diffstat (limited to 'flake')
-rw-r--r-- | flake/nixosConfigurations/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix index 3041399..9e7fc33 100644 --- a/flake/nixosConfigurations/default.nix +++ b/flake/nixosConfigurations/default.nix @@ -30,7 +30,7 @@ }; } ]; - nixosConfig = system: file: + mkNixosHost = system: file: nixpkgs.lib.nixosSystem { inherit system; specialArgs = attrs; @@ -54,7 +54,7 @@ in { # ] # ++ defaultModules; #}; - thinklappi = nixosConfig "x86_64-linux" ../../hosts/thinklappi.nix; + thinklappi = mkNixosHost "x86_64-linux" ../../hosts/thinklappi.nix; thinklappi-bootstrap = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = attrs; |