summaryrefslogtreecommitdiff
path: root/nixos/systems/thinkpad-laptop/system.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/systems/thinkpad-laptop/system.nix')
-rw-r--r--nixos/systems/thinkpad-laptop/system.nix10
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";
};
}