System Gen122 @ 2024-10-19-15:06:19

This commit is contained in:
Jonas Röger 2024-10-19 15:11:44 +02:00
parent b6d7fe45bb
commit 9982f8298d
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -11,7 +11,7 @@ in {
};
config = lib.mkIf cfg.enable {
services = {
xserver.libinput.enable = true;
libinput.enable = true;
dbus.enable = true;
};

View File

@ -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;
};