diff --git a/hosts/comfy-station/configuration.nix b/hosts/comfy-station/configuration.nix index cd4622b..257721c 100644 --- a/hosts/comfy-station/configuration.nix +++ b/hosts/comfy-station/configuration.nix @@ -110,7 +110,7 @@ networking.firewall.enable = false; # touchpad - services.xserver.libinput.touchpad.naturalScrolling = true; + services.libinput.touchpad.naturalScrolling = true; # ld-fix programs.nix-ld.enable = true; diff --git a/modules/desktop/de/hyprland.nix b/modules/desktop/de/hyprland.nix index 7844ec2..ddca13c 100644 --- a/modules/desktop/de/hyprland.nix +++ b/modules/desktop/de/hyprland.nix @@ -11,7 +11,7 @@ in { }; config = lib.mkIf cfg.enable { services = { - xserver.libinput.enable = true; + libinput.enable = true; dbus.enable = true; }; diff --git a/modules/desktop/dm/sddm.nix b/modules/desktop/dm/sddm.nix index 1a817e0..a39bd46 100644 --- a/modules/desktop/dm/sddm.nix +++ b/modules/desktop/dm/sddm.nix @@ -6,7 +6,7 @@ cfg = config.desktop.dm; in { config = lib.mkIf (cfg.name == "sddm") { - services.xserver.displayManager.sddm = { + services.displayManager.sddm = { enable = true; wayland.enable = cfg.wayland; };