This commit is contained in:
iFargle 2023-08-23 17:13:00 +09:00
parent 612aa69698
commit 37635ca621

View file

@ -16,11 +16,11 @@
inherit (self) outputs; inherit (self) outputs;
stateVersion = "unstable"; stateVersion = "unstable";
hmStateVersion = "23.05"; hmStateVersion = "23.05";
libx = import ./lib { inherit inputs outputs stateVersion; }; libx = import ./lib { inherit inputs outputs hmStateVersion stateVersion; };
in { in {
nixosConfigurations = { nixosConfigurations = {
nixos-laptop = libx.nixosSystem { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; }; nixos-laptop = libx.mkHost { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; };
nixos-desktop = libx.nixosSystem { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; }; nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; };
}; };
homeConfigurations = { homeConfigurations = {
"albert@nixos-laptop" = libx.mkHome { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; }; "albert@nixos-laptop" = libx.mkHome { hostname = "nixos-laptop"; username = "albert"; desktop = "gnome"; };