about summary refs log tree commit diff
path: root/nixos/tests/sddm.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-04-12 06:43:50 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2020-07-09 21:15:35 -0400
commit490cd7889e3604d93187be54396b7114ce1bb0b5 (patch)
treefa6336125bb18ecc41de9f45fa6d03c190c46d9b /nixos/tests/sddm.nix
parentaba048f0bf2c5894fa431cdd7faf8406bd5dabde (diff)
nixos/displayManager: make autoLogin options independent of DM type
Co-authored-by: volth <volth@volth.com>
Diffstat (limited to 'nixos/tests/sddm.nix')
-rw-r--r--nixos/tests/sddm.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/sddm.nix b/nixos/tests/sddm.nix
index a145705250f71..f9b961163c3c1 100644
--- a/nixos/tests/sddm.nix
+++ b/nixos/tests/sddm.nix
@@ -44,8 +44,8 @@ let
       machine = { ... }: {
         imports = [ ./common/user-account.nix ];
         services.xserver.enable = true;
-        services.xserver.displayManager.sddm = {
-          enable = true;
+        services.xserver.displayManager = {
+          sddm.enable = true;
           autoLogin = {
             enable = true;
             user = "alice";