renamed incorrect var

This commit is contained in:
kenji
2025-07-18 08:47:27 -05:00
parent 1b8e5032f9
commit a6fdaf9a27
+5 -3
View File
@@ -3,10 +3,12 @@
pkgs, pkgs,
lib, lib,
myConfig, myConfig,
inputs,
... ...
}: { }: {
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
inputs.chaotic.nixosModules.default
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
@@ -86,7 +88,7 @@
services.greetd = { services.greetd = {
enable = true; enable = true;
settings.default_session = { settings.default_session = {
user = "${myConfig.essenstials.Username}"; user = "${myConfig.essentials.Username}";
command = "steam-gamescope > /dev/null 2>&1"; command = "steam-gamescope > /dev/null 2>&1";
}; };
}; };
@@ -142,7 +144,7 @@
############### ###############
# Users # # Users #
############### ###############
users.users.${myConfig.essenstials.Username} = { users.users.${myConfig.essentials.Username} = {
isNormalUser = true; isNormalUser = true;
description = "SteamOS user"; description = "SteamOS user";
extraGroups = ["networkmanager" "wheel" "docker" "video" "seat" "audio" "libvirtd"]; extraGroups = ["networkmanager" "wheel" "docker" "video" "seat" "audio" "libvirtd"];
@@ -163,5 +165,5 @@
######################## ########################
# System State Version # # System State Version #
######################## ########################
system.stateVersion = "24.11"; system.stateVersion = "25.05";
} }