From 37635ca6217b82e85bd4f17c44c70e3caa5aef3b Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 23 Aug 2023 17:13:00 +0900 Subject: [PATCH] test --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index a9ca18eb..9be79b6f 100644 --- a/flake.nix +++ b/flake.nix @@ -16,11 +16,11 @@ inherit (self) outputs; stateVersion = "unstable"; hmStateVersion = "23.05"; - libx = import ./lib { inherit inputs outputs stateVersion; }; + libx = import ./lib { inherit inputs outputs hmStateVersion stateVersion; }; in { nixosConfigurations = { - nixos-laptop = libx.nixosSystem { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; }; - nixos-desktop = libx.nixosSystem { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; }; + nixos-laptop = libx.mkHost { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; }; + nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; }; }; homeConfigurations = { "albert@nixos-laptop" = libx.mkHome { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; };