about summary refs log tree commit diff
path: root/nixos/modules/profiles
diff options
context:
space:
mode:
authorJulian Stecklina <julian.stecklina@cyberus-technology.de>2024-04-16 13:42:29 +0200
committerJulian Stecklina <julian.stecklina@cyberus-technology.de>2024-04-16 13:42:29 +0200
commit1f977157679661b2cf58774be632f3ca023ce1b6 (patch)
tree8ca57b0607241c8cae92485fbec0de9147c55dbc /nixos/modules/profiles
parent92415267c6b14799e654c89104370abe13a4229b (diff)
profiles/graphical:rename services.xserver.displayManager
Diffstat (limited to 'nixos/modules/profiles')
-rw-r--r--nixos/modules/profiles/graphical.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix
index d80456cede565..8cc31652f8075 100644
--- a/nixos/modules/profiles/graphical.nix
+++ b/nixos/modules/profiles/graphical.nix
@@ -6,13 +6,12 @@
 {
   services.xserver = {
     enable = true;
-    displayManager.sddm.enable = true;
-    desktopManager.plasma5 = {
-      enable = true;
-    };
+    desktopManager.plasma5.enable = true;
     libinput.enable = true; # for touchpad support on many laptops
   };
 
+  services.displayManager.sddm.enable = true;
+
   # Enable sound in virtualbox appliances.
   hardware.pulseaudio.enable = true;