From 9982f8298d19bdb0d7b402d0f35522b533d62f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Sat, 19 Oct 2024 15:11:44 +0200 Subject: [PATCH] System Gen122 @ 2024-10-19-15:06:19 --- hosts/comfy-station/configuration.nix | 2 +- modules/desktop/de/hyprland.nix | 2 +- modules/desktop/dm/sddm.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; };