diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-18 09:29:49 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-18 09:30:39 -0800 |
commit | 4cc16153d73b4b02c6c0198da3b27730fd1a7b8c (patch) | |
tree | bd9ad0e5926ef693ffd5ed2ea5cf26a7d0e4417c | |
parent | boot: reorganize and add comments (diff) | |
download | world-4cc16153d73b4b02c6c0198da3b27730fd1a7b8c.tar.gz |
desktop: enable natural scrolling
-rw-r--r-- | hosts/common/desktop/xserver.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hosts/common/desktop/xserver.nix b/hosts/common/desktop/xserver.nix index d7cbcd8..a6c8eb4 100644 --- a/hosts/common/desktop/xserver.nix +++ b/hosts/common/desktop/xserver.nix @@ -20,8 +20,10 @@ services.xserver = { enable = true; layout = "us"; - libinput.enable = true; - + libinput = { + enable = true; + naturalScrolling = true; + }; displayManager = { gdm.enable = true; gdm.wayland = true; |