The Blue Update #1

Merged
Jimbo merged 101 commits from Refactor into main 2024-10-25 21:26:22 -04:00
2 changed files with 5 additions and 4 deletions
Showing only changes of commit 865afe8ab3 - Show all commits

View file

@ -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";

View file

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