summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles/graphical.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-04-27 23:23:06 +0200
committerGitHub <noreply@github.com>2024-04-27 23:23:06 +0200
commit85808e4b33f65c7d418db493f18243db4285094c (patch)
treee5d74b84992109a7f3df824a3ab798bd55791065 /nixos/modules/profiles/graphical.nix
parent3ed7049cddddc675ea43a2c8b1c925e69230aa43 (diff)
parentcb8b6a5d00464c268db7452e698ea6094649e9bd (diff)
Merge pull request #304902 from SuperSandro2000/libinput-xserver
nixos/libinput: move out of xserver
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;