diff --git a/modules/core/user.nix b/modules/core/user.nix index 2001797..c083df2 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -5,8 +5,6 @@ let name = "FrostPhoenix"; username = "frostphoenix"; - #email = "t@gmail.com"; - initialPassword = "dreamX"; packages = with pkgs; [ fish ]; @@ -28,11 +26,9 @@ in users.users.${username} = { isNormalUser = true; - initialPassword = initialPassword; description = name; extraGroups = [ "networkmanager" "wheel" ]; shell = pkgs.zsh; }; - users.users.root.initialPassword = initialPassword; - nix.settings.allowed-users = [ "frostphoenix" ]; + nix.settings.allowed-users = [ ${username} ]; } diff --git a/modules/core/xserver.nix b/modules/core/xserver.nix index 2cd18bc..cbdcd20 100644 --- a/modules/core/xserver.nix +++ b/modules/core/xserver.nix @@ -2,7 +2,7 @@ services.xserver = { enable = true; layout = "us"; - videoDrivers = [ "amdgpu" ]; + # videoDrivers = [ "amdgpu" ]; displayManager.autoLogin = { enable = true; user = "frostphoenix";