summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-27 20:03:06 -0400
committertriethyl <triethylammonium@pm.me>2025-09-27 20:03:06 -0400
commit83f503a51e2d770af4d9d81dde02e3f9a1adc18d (patch)
tree919930ff22f3b071af0e827c7c620c4a80b4549d /nixos
parentd9527f28359921d0e86aadabe325fb4281700a0d (diff)
thinkpad: updated keyboard settings
Diffstat (limited to 'nixos')
-rw-r--r--nixos/systems/thinkpad-laptop/system.nix13
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";
+ };
};
}