From 1f977157679661b2cf58774be632f3ca023ce1b6 Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Tue, 16 Apr 2024 13:42:29 +0200 Subject: [PATCH] profiles/graphical:rename services.xserver.displayManager --- nixos/modules/profiles/graphical.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix index d80456cede56..8cc31652f807 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;