summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles/graphical.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/profiles/graphical.nix')
-rw-r--r--nixos/modules/profiles/graphical.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix
index 8cc31652f807..72b865c584f0 100644
--- a/nixos/modules/profiles/graphical.nix
+++ b/nixos/modules/profiles/graphical.nix
@@ -7,10 +7,12 @@
services.xserver = {
enable = true;
desktopManager.plasma5.enable = true;
- libinput.enable = true; # for touchpad support on many laptops
};
- services.displayManager.sddm.enable = true;
+ services = {
+ displayManager.sddm.enable = true;
+ libinput.enable = true; # for touchpad support on many laptops
+ };
# Enable sound in virtualbox appliances.
hardware.pulseaudio.enable = true;