diff options
| author | triethyl <triethylammonium@pm.me> | 2025-09-27 20:03:06 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-09-27 20:03:06 -0400 |
| commit | 83f503a51e2d770af4d9d81dde02e3f9a1adc18d (patch) | |
| tree | 919930ff22f3b071af0e827c7c620c4a80b4549d /nixos | |
| parent | d9527f28359921d0e86aadabe325fb4281700a0d (diff) | |
thinkpad: updated keyboard settings
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/systems/thinkpad-laptop/system.nix | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/nixos/systems/thinkpad-laptop/system.nix b/nixos/systems/thinkpad-laptop/system.nix index 0f60b16..28ff384 100644 --- a/nixos/systems/thinkpad-laptop/system.nix +++ b/nixos/systems/thinkpad-laptop/system.nix @@ -27,7 +27,6 @@ gui = { apps = { steam.enable = true; - # vmware.enable = true; }; desktops = { niri.enable = true; @@ -65,11 +64,17 @@ }; hardware.trackpoint = { enable = true; - speed = 20; - sensitivity = 120; + speed = 255; + sensitivity = 255; }; services.xserver.xkb = { layout = "us,ca(multix)"; - options = "grp:win_space_toggle,caps:shift,compose:ins"; + options = "grp:win_space_toggle,compose:ins"; + }; + services.keyd = { + enable = true; + keyboards.default.settings.main = { + capslock = "leftshift"; + }; }; } |
