summary refs log tree commit diff stats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r--flake/nixosConfigurations/default.nix4
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;