From 8186202d153602c80423bbe27570e00c538e507f Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Sun, 7 Apr 2024 18:36:54 +0200 Subject: flake/nixosConfigurations: rename nixosConfig to mkNixosHost --- flake/nixosConfigurations/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'flake/nixosConfigurations/default.nix') 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; -- cgit 1.4.1