about summary refs log tree commit diff
path: root/modules/user/openlab/labtops.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-02-10 05:52:18 +0100
committeraszlig <aszlig@nix.build>2020-02-10 06:18:51 +0100
commit7a2023277da1c362e3fbc0b606e2fbaa5201b12e (patch)
treeb656d5d5f70fad45c4a6d1b4628aae364c5081eb /modules/user/openlab/labtops.nix
parent0f0e3cef6297d1334a3b1c27bb125490850be84f (diff)
Fix deprecated displayManager.auto.enable option
Since a while[1], the services.xserver.displayManager.auto option is
deprecated. Since first of all SLiM got removed and now every display
manager supports auto-login, I switched the labtops module to use the
LightDM implementation.

Since the common x11 test module still exposes a similar interface, we
only need to use the same options from the test-support option, which
should hopefully be a "sane default" suitable for tests.

[1]: https://github.com/NixOS/nixpkgs/commit/c95612a5a2d4bd93011c042066c

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @Profpatsch
Diffstat (limited to 'modules/user/openlab/labtops.nix')
-rw-r--r--modules/user/openlab/labtops.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/user/openlab/labtops.nix b/modules/user/openlab/labtops.nix
index ea745c20..14aaff05 100644
--- a/modules/user/openlab/labtops.nix
+++ b/modules/user/openlab/labtops.nix
@@ -76,8 +76,9 @@ in
       xkbOptions = "eurosign:e";
 
       displayManager = {
-        auto.enable = true;
-        auto.user = "openlab";
+        lightdm.enable = true;
+        lightdm.autoLogin.enable = true;
+        lightdm.autoLogin.user = "openlab";
         sessionCommands = with pkgs; ''
           ${xorg.xset}/bin/xset r rate 250 35
         '';