summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-03 10:51:53 -0400
committertriethyl <triethylammonium@pm.me>2025-09-03 10:51:53 -0400
commit963f04ac4931a91c9e6095ebcbeb2b3c8af5294c (patch)
treebbd9e34e28afdb9ce957e910babebae81354ecff
parent158a67f6eda37c72e9510b4b73c66d3fc37751a3 (diff)
configured xkb
-rwxr-xr-xhome-manager/features/gui/desktops/niri/default.nix4
-rw-r--r--nixos/systems/thinkpad-laptop/system.nix10
2 files changed, 7 insertions, 7 deletions
diff --git a/home-manager/features/gui/desktops/niri/default.nix b/home-manager/features/gui/desktops/niri/default.nix
index 6304c66..38e0cfd 100755
--- a/home-manager/features/gui/desktops/niri/default.nix
+++ b/home-manager/features/gui/desktops/niri/default.nix
@@ -109,10 +109,6 @@ in {
always-center-single-column = false;
empty-workspace-above-first = true;
};
- input.keyboard.xkb.options = ''
- caps:escape,
- compose:ins
- '';
hotkey-overlay.skip-at-startup = true;
input = {
touchpad = {
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";
};
}