feat: remap < to shift on alice
This commit is contained in:
parent
98086c48e5
commit
044914e739
1 changed files with 18 additions and 7 deletions
|
@ -15,15 +15,26 @@ in {
|
||||||
|
|
||||||
networking.hostName = "alice";
|
networking.hostName = "alice";
|
||||||
|
|
||||||
services.tlp = {
|
services = {
|
||||||
enable = true;
|
tlp = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
START_CHARGE_THRESH_BAT0 = 75;
|
START_CHARGE_THRESH_BAT0 = 75;
|
||||||
STOP_CHARGE_THRESH_BAT0 = 80;
|
STOP_CHARGE_THRESH_BAT0 = 80;
|
||||||
|
|
||||||
START_CHARGE_THRESH_BAT1 = 75;
|
START_CHARGE_THRESH_BAT1 = 75;
|
||||||
STOP_CHARGE_THRESH_BAT1 = 80;
|
STOP_CHARGE_THRESH_BAT1 = 80;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
keyd = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
main = {
|
||||||
|
"102nd" = "layer(shift)"; # < as shift
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue