automatic login
This commit is contained in:
parent
e3ee31ce94
commit
f89ae068ed
2 changed files with 17 additions and 2 deletions
|
@ -3,3 +3,11 @@
|
|||
- uninstall Gnome console
|
||||
- auto-install firefox extensions
|
||||
- flakes?
|
||||
- keepassxc
|
||||
- nextcloud client
|
||||
- thunderbird
|
||||
- neovim
|
||||
- nixos-rebuild without root
|
||||
- alacritty settings
|
||||
- mouse disappears on hover
|
||||
- theme
|
||||
|
|
|
@ -17,7 +17,15 @@ in
|
|||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
settings = {
|
||||
daemon = {
|
||||
AutomaticLoginEnable = true;
|
||||
AutomaticLogin = "pim";
|
||||
};
|
||||
};
|
||||
};
|
||||
desktopManager.gnome.enable = true;
|
||||
excludePackages = with pkgs; [ xterm ];
|
||||
};
|
||||
|
@ -41,4 +49,3 @@ in
|
|||
|
||||
system.stateVersion = stateVersion;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue