clean up
This commit is contained in:
parent
e0e976077d
commit
0f3e53a01a
|
@ -5,8 +5,6 @@
|
||||||
let
|
let
|
||||||
name = "FrostPhoenix";
|
name = "FrostPhoenix";
|
||||||
username = "frostphoenix";
|
username = "frostphoenix";
|
||||||
#email = "t@gmail.com";
|
|
||||||
initialPassword = "dreamX";
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
fish
|
fish
|
||||||
];
|
];
|
||||||
|
@ -28,11 +26,9 @@ in
|
||||||
|
|
||||||
users.users.${username} = {
|
users.users.${username} = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
initialPassword = initialPassword;
|
|
||||||
description = name;
|
description = name;
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
users.users.root.initialPassword = initialPassword;
|
nix.settings.allowed-users = [ ${username} ];
|
||||||
nix.settings.allowed-users = [ "frostphoenix" ];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
layout = "us";
|
layout = "us";
|
||||||
videoDrivers = [ "amdgpu" ];
|
# videoDrivers = [ "amdgpu" ];
|
||||||
displayManager.autoLogin = {
|
displayManager.autoLogin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "frostphoenix";
|
user = "frostphoenix";
|
||||||
|
|
Loading…
Reference in a new issue