feat: remap < to shift on alice

This commit is contained in:
buffet 2023-07-19 15:33:14 +02:00
parent 98086c48e5
commit 044914e739

View file

@ -15,15 +15,26 @@ in {
networking.hostName = "alice";
services.tlp = {
enable = true;
services = {
tlp = {
enable = true;
settings = {
START_CHARGE_THRESH_BAT0 = 75;
STOP_CHARGE_THRESH_BAT0 = 80;
settings = {
START_CHARGE_THRESH_BAT0 = 75;
STOP_CHARGE_THRESH_BAT0 = 80;
START_CHARGE_THRESH_BAT1 = 75;
STOP_CHARGE_THRESH_BAT1 = 80;
START_CHARGE_THRESH_BAT1 = 75;
STOP_CHARGE_THRESH_BAT1 = 80;
};
};
keyd = {
enable = true;
settings = {
main = {
"102nd" = "layer(shift)"; # < as shift
};
};
};
};
}