Add an mkforce to the keys of the chromebook to avoid conflicting hotkeys

This commit is contained in:
Jimbo 2024-10-19 13:07:09 -04:00
parent 9af53874c4
commit 865afe8ab3
2 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ config, ... }: { config, lib, ... }:
{ {
imports = [ imports = [
./hardware ./hardware
@ -24,9 +24,9 @@
]; ];
services.keyd.keyboards.default.settings.main = { services.keyd.keyboards.default.settings.main = {
leftmeta = "overload(control, esc)"; leftmeta = lib.mkForce "overload(control, esc)";
leftcontrol = "leftmeta"; leftcontrol = lib.mkForce "leftmeta";
f13 = "delete"; f13 = lib.mkForce "delete";
}; };
networking.hostName = "lacros"; networking.hostName = "lacros";

View file

@ -7,6 +7,7 @@
settings.main = { settings.main = {
capslock = "overload(control, esc)"; capslock = "overload(control, esc)";
esc = "capslock"; esc = "capslock";
control = "f14";
}; };
}; };
}; };