rename libinput options

This commit is contained in:
Sean Buckley 2024-05-27 17:10:14 -04:00
parent 2a211813fd
commit 58382a6458
3 changed files with 3 additions and 3 deletions

View file

@ -48,8 +48,8 @@
earlyoom.enable = true;
logind.lidSwitch = "ignore";
openssh.enable = true;
libinput.mouse.middleEmulation = false;
xserver = {
libinput.mouse.middleEmulation = false;
deviceSection = ''
Option "VariableRefresh" "true"
'';

View file

@ -7,9 +7,9 @@ in
config = lib.mkIf cfg {
services.libinput.enable = true;
services.xserver = {
enable = true;
libinput.enable = true;
displayManager.gdm.enable = true;
displayManager.gdm.autoSuspend = false;
desktopManager.gnome.enable = true;

View file

@ -6,9 +6,9 @@ in
options.sconfig.plasma = lib.mkEnableOption "Enable Plasma Desktop";
config = lib.mkIf cfg {
services.libinput.enable = true;
services.xserver = {
enable = true;
libinput.enable = true;
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
};