diff --git a/hosts/steamos/configuration.nix b/hosts/steamos/configuration.nix index e8ba292..9e36236 100644 --- a/hosts/steamos/configuration.nix +++ b/hosts/steamos/configuration.nix @@ -3,10 +3,12 @@ pkgs, lib, myConfig, + inputs, ... }: { imports = [ # Include the results of the hardware scan. + inputs.chaotic.nixosModules.default ./hardware-configuration.nix ]; @@ -86,7 +88,7 @@ services.greetd = { enable = true; settings.default_session = { - user = "${myConfig.essenstials.Username}"; + user = "${myConfig.essentials.Username}"; command = "steam-gamescope > /dev/null 2>&1"; }; }; @@ -142,7 +144,7 @@ ############### # Users # ############### - users.users.${myConfig.essenstials.Username} = { + users.users.${myConfig.essentials.Username} = { isNormalUser = true; description = "SteamOS user"; extraGroups = ["networkmanager" "wheel" "docker" "video" "seat" "audio" "libvirtd"]; @@ -163,5 +165,5 @@ ######################## # System State Version # ######################## - system.stateVersion = "24.11"; + system.stateVersion = "25.05"; }