feat: swap backslash and return on alice to emulate iso
This commit is contained in:
parent
044914e739
commit
23238c577e
3 changed files with 16 additions and 4 deletions
|
@ -20,11 +20,11 @@ in {
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
START_CHARGE_THRESH_BAT0 = 75;
|
||||
STOP_CHARGE_THRESH_BAT0 = 80;
|
||||
START_CHARGE_THRESH_BAT0 = 40;
|
||||
STOP_CHARGE_THRESH_BAT0 = 60;
|
||||
|
||||
START_CHARGE_THRESH_BAT1 = 75;
|
||||
STOP_CHARGE_THRESH_BAT1 = 80;
|
||||
START_CHARGE_THRESH_BAT1 = 40;
|
||||
STOP_CHARGE_THRESH_BAT1 = 60;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -33,6 +33,8 @@ in {
|
|||
settings = {
|
||||
main = {
|
||||
"102nd" = "layer(shift)"; # < as shift
|
||||
"enter" = "\\";
|
||||
"\\" = "enter";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
./programs/git.nix
|
||||
./programs/gpg.nix
|
||||
./programs/ime.nix
|
||||
./programs/keyd.nix
|
||||
./programs/lsd.nix
|
||||
./programs/mako.nix
|
||||
./programs/newsboat.nix
|
||||
|
|
9
programs/keyd.nix
Normal file
9
programs/keyd.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
_: {
|
||||
services.keyd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
capslock = "overload(control, esc)";
|
||||
esc = "capslock";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue