Add an mkforce to the keys of the chromebook to avoid conflicting hotkeys
This commit is contained in:
parent
9af53874c4
commit
865afe8ab3
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware
|
||||
|
@ -24,9 +24,9 @@
|
|||
];
|
||||
|
||||
services.keyd.keyboards.default.settings.main = {
|
||||
leftmeta = "overload(control, esc)";
|
||||
leftcontrol = "leftmeta";
|
||||
f13 = "delete";
|
||||
leftmeta = lib.mkForce "overload(control, esc)";
|
||||
leftcontrol = lib.mkForce "leftmeta";
|
||||
f13 = lib.mkForce "delete";
|
||||
};
|
||||
|
||||
networking.hostName = "lacros";
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
settings.main = {
|
||||
capslock = "overload(control, esc)";
|
||||
esc = "capslock";
|
||||
control = "f14";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue