summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-07-05 22:10:26 -0400
committerGitHub <noreply@github.com>2018-07-05 22:10:26 -0400
commita92472fae11b57c46ff370c044e0afacd0feb700 (patch)
treebc17a47237b95987048a96051884872d9c42458f /nixos/modules
parent00db477324bf58571274935e70fb392cdf5c3736 (diff)
parenta8ff4a073fcb388b166efc613972668507b22637 (diff)
downloadnixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.tar
nixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.tar.gz
nixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.tar.bz2
nixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.tar.lz
nixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.tar.xz
nixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.tar.zst
nixpkgs-a92472fae11b57c46ff370c044e0afacd0feb700.zip
Merge pull request #42724 from yshui/libinput-button
libinput: add button to scrollMethod
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/x11/hardware/libinput.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix
index d0a87f183b6..072004d5dd9 100644
--- a/nixos/modules/services/x11/hardware/libinput.nix
+++ b/nixos/modules/services/x11/hardware/libinput.nix
@@ -116,7 +116,7 @@ in {
       };
 
       scrollMethod = mkOption {
-        type = types.enum [ "twofinger" "edge" "none" ];
+        type = types.enum [ "twofinger" "edge" "button" "none" ];
         default = "twofinger";
         example = "edge";
         description =