automatic login

This commit is contained in:
nixos 2023-09-02 19:24:36 +02:00
parent e3ee31ce94
commit f89ae068ed
2 changed files with 17 additions and 2 deletions

View file

@ -3,3 +3,11 @@
- uninstall Gnome console - uninstall Gnome console
- auto-install firefox extensions - auto-install firefox extensions
- flakes? - flakes?
- keepassxc
- nextcloud client
- thunderbird
- neovim
- nixos-rebuild without root
- alacritty settings
- mouse disappears on hover
- theme

View file

@ -17,7 +17,15 @@ in
services.xserver = { services.xserver = {
enable = true; enable = true;
displayManager.gdm.enable = true; displayManager.gdm = {
enable = true;
settings = {
daemon = {
AutomaticLoginEnable = true;
AutomaticLogin = "pim";
};
};
};
desktopManager.gnome.enable = true; desktopManager.gnome.enable = true;
excludePackages = with pkgs; [ xterm ]; excludePackages = with pkgs; [ xterm ];
}; };
@ -41,4 +49,3 @@ in
system.stateVersion = stateVersion; system.stateVersion = stateVersion;
} }