feat: swap backslash and return on alice to emulate iso

This commit is contained in:
buffet 2023-07-21 09:34:06 +02:00
parent 044914e739
commit 23238c577e
3 changed files with 16 additions and 4 deletions

View file

@ -20,11 +20,11 @@ in {
enable = true; enable = true;
settings = { settings = {
START_CHARGE_THRESH_BAT0 = 75; START_CHARGE_THRESH_BAT0 = 40;
STOP_CHARGE_THRESH_BAT0 = 80; STOP_CHARGE_THRESH_BAT0 = 60;
START_CHARGE_THRESH_BAT1 = 75; START_CHARGE_THRESH_BAT1 = 40;
STOP_CHARGE_THRESH_BAT1 = 80; STOP_CHARGE_THRESH_BAT1 = 60;
}; };
}; };
@ -33,6 +33,8 @@ in {
settings = { settings = {
main = { main = {
"102nd" = "layer(shift)"; # < as shift "102nd" = "layer(shift)"; # < as shift
"enter" = "\\";
"\\" = "enter";
}; };
}; };
}; };

View file

@ -8,6 +8,7 @@
./programs/git.nix ./programs/git.nix
./programs/gpg.nix ./programs/gpg.nix
./programs/ime.nix ./programs/ime.nix
./programs/keyd.nix
./programs/lsd.nix ./programs/lsd.nix
./programs/mako.nix ./programs/mako.nix
./programs/newsboat.nix ./programs/newsboat.nix

9
programs/keyd.nix Normal file
View file

@ -0,0 +1,9 @@
_: {
services.keyd = {
enable = true;
settings = {
capslock = "overload(control, esc)";
esc = "capslock";
};
};
}