about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2024-06-09T11·59+0300
committerclbot <clbot@tvl.fyi>2024-06-09T12·06+0000
commitb703b14576a42271f59d5e7ed4f6593d3101fbf7 (patch)
tree28a3808dd86b04b6626e4ebbc8bd9e058040685d
parent73c39fe1befc64a0612ac9af3887afbf5ba34f85 (diff)
fix(tazjin/nixos): use renamed libinput option r/8230
Change-Id: Iceb746abc037b898aa08912b37ef76d531247fa6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11767
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--users/tazjin/nixos/modules/desktop.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/users/tazjin/nixos/modules/desktop.nix b/users/tazjin/nixos/modules/desktop.nix
index 12a42b8faa..4dd25db641 100644
--- a/users/tazjin/nixos/modules/desktop.nix
+++ b/users/tazjin/nixos/modules/desktop.nix
@@ -12,14 +12,13 @@
 
     redshift.enable = true;
     blueman.enable = true;
+    libinput.enable = true;
 
     xserver = {
       enable = true;
       xkb.layout = "us";
       xkb.options = "caps:super";
 
-      libinput.enable = true;
-
       displayManager = {
         # Give EXWM permission to control the session.
         sessionCommands = "${pkgs.xorg.xhost}/bin/xhost +SI:localuser:$USER";