summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles/graphical.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2024-04-17 23:00:59 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-04-17 23:34:07 +0200
commitcb8b6a5d00464c268db7452e698ea6094649e9bd (patch)
treee1c82fce922b103ce4b5117ae870e6c50630ff4e /nixos/modules/profiles/graphical.nix
parent810558a46bff49a214454c60039dff9e195e629a (diff)
treewide: reanme renamed libinput options
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;