diff --git a/README.md b/README.md index 8efc6b5..10c1c75 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/configuration.nix b/configuration.nix index dbe13d0..70601e3 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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; } -