diff options
| author | triethyl <triethylammonium@pm.me> | 2025-09-03 10:51:53 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-09-03 10:51:53 -0400 |
| commit | 963f04ac4931a91c9e6095ebcbeb2b3c8af5294c (patch) | |
| tree | bbd9e34e28afdb9ce957e910babebae81354ecff /nixos | |
| parent | 158a67f6eda37c72e9510b4b73c66d3fc37751a3 (diff) | |
configured xkb
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/systems/thinkpad-laptop/system.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/nixos/systems/thinkpad-laptop/system.nix b/nixos/systems/thinkpad-laptop/system.nix index f1d227f..0f60b16 100644 --- a/nixos/systems/thinkpad-laptop/system.nix +++ b/nixos/systems/thinkpad-laptop/system.nix @@ -8,7 +8,7 @@ stateVersion = "24.11"; }; - age.secrets.user-passwords_thinkpad-laptop_lucas.file = ../../secrets/user-passwords/thinkpad-laptop/lucas.age; + age.secrets.user-passwords_thinkpad-laptop_lucas.file = ../../../secrets/user-passwords/thinkpad-laptop/lucas.age; users.users."lucas" = { hashedPasswordFile = config.age.secrets.user-passwords_thinkpad-laptop_lucas.path; @@ -65,7 +65,11 @@ }; hardware.trackpoint = { enable = true; - speed = 40; - sensitivity = 80; + speed = 20; + sensitivity = 120; + }; + services.xserver.xkb = { + layout = "us,ca(multix)"; + options = "grp:win_space_toggle,caps:shift,compose:ins"; }; } |
