From 9495b4435d8dc1dad5e1cfd0d09e291f7dafe324 Mon Sep 17 00:00:00 2001 From: Tristan Druyen Date: Thu, 14 Sep 2023 17:20:27 +0200 Subject: [PATCH] Enable autologin to plasmawayland Signed-off-by: Tristan Druyen --- configuration.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 8ebd03d..705010c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -83,8 +83,9 @@ }; # Enable automatic login for the user. - # services.xserver.displayManager.autoLogin.enable = true; - # services.xserver.displayManager.autoLogin.user = "tristand"; + services.xserver.displayManager.defaultSession ="plasmawayland"; + services.xserver.displayManager.autoLogin.enable = true; + services.xserver.displayManager.autoLogin.user = "tristand"; # Allow unfree packages nixpkgs.config.allowUnfree = true;