Disable Kanata service

Needs some more configuring before using full-time
This commit is contained in:
Evie Litherland-Smith 2024-11-04 10:25:01 +00:00
parent fb56866e4e
commit 654901cf2d
2 changed files with 10 additions and 10 deletions

View file

@ -57,7 +57,7 @@
package = pkgs.gnome3.gvfs;
};
kanata = {
enable = true;
enable = false;
keyboards.main = {
config = builtins.readFile ./kanata.kbd;
extraDefCfg = "process-unmapped-keys yes";

View file

@ -6,19 +6,19 @@
(
defvar
tap-time 150
hold-time 250
tap-time 200
hold-time 200
)
(
defalias
a-mod (tap-hold $tap-time $hold-time a lmet)
s-mod (tap-hold $tap-time $hold-time s lalt)
d-mod (tap-hold $tap-time $hold-time d lsft)
f-mod (tap-hold $tap-time $hold-time f lctl)
j-mod (tap-hold $tap-time $hold-time j lctl)
k-mod (tap-hold $tap-time $hold-time k lsft)
l-mod (tap-hold $tap-time $hold-time l lalt)
a-mod (tap-hold-press $tap-time $hold-time a lmet)
s-mod (tap-hold-press $tap-time $hold-time s lalt)
d-mod (tap-hold-press $tap-time $hold-time d lsft)
f-mod (tap-hold-press $tap-time $hold-time f lctl)
j-mod (tap-hold-press $tap-time $hold-time j lctl)
k-mod (tap-hold-press $tap-time $hold-time k lsft)
l-mod (tap-hold-press $tap-time $hold-time l lalt)
;-mod (tap-hold $tap-time $hold-time ; lmet)
)