nix-config/modules/kanata/config.nix
Oliver Davies 95873b8110
All checks were successful
/ check (push) Successful in 38s
Update home row mod mappings
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-11-06 00:36:57 +00:00

29 lines
733 B
Nix

{
flake.modules.nixos.pc.services.kanata.keyboards.default.config = ''
(defsrc
caps a s d f j k l ;
)
(defvar
hold-time 200
hold-time-slow 300
tap-time 150
)
(defalias
escctrl (tap-hold 100 100 esc lctl)
a (tap-hold $tap-time $hold-time-slow a lsft)
s (tap-hold $tap-time $hold-time-slow s lalt)
d (tap-hold $tap-time $hold-time d lctl)
f (tap-hold $tap-time $hold-time f lmet)
j (tap-hold $tap-time $hold-time j rmet)
k (tap-hold $tap-time $hold-time k rctl)
l (tap-hold $tap-time $hold-time-slow l ralt)
; (tap-hold $tap-time $hold-time-slow ; rsft)
)
(deflayer base
@escctrl @a @s @d @f @j @k @l @;
)
'';
}