diff options
author | Vincent Ambo <mail@tazj.in> | 2024-06-09T11·59+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-09T12·06+0000 |
commit | b703b14576a42271f59d5e7ed4f6593d3101fbf7 (patch) | |
tree | 28a3808dd86b04b6626e4ebbc8bd9e058040685d /users/tazjin/nixos | |
parent | 73c39fe1befc64a0612ac9af3887afbf5ba34f85 (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
Diffstat (limited to 'users/tazjin/nixos')
-rw-r--r-- | users/tazjin/nixos/modules/desktop.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/users/tazjin/nixos/modules/desktop.nix b/users/tazjin/nixos/modules/desktop.nix index 12a42b8faa4b..4dd25db641e1 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"; |