From f89ae068ed297743c06c4b896b8149488235b6a1 Mon Sep 17 00:00:00 2001 From: nixos Date: Sat, 2 Sep 2023 19:24:36 +0200 Subject: [PATCH] automatic login --- README.md | 8 ++++++++ configuration.nix | 11 +++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) 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; } -