use maple font

This commit is contained in:
js0ny 2025-10-31 04:09:25 +00:00
parent 1bbdd77d5c
commit 16ab036322
18 changed files with 222 additions and 32 deletions

View file

@ -0,0 +1,17 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
keyd
];
services.keyd = {
enable = true;
keyboards = {
ids = ["*"];
settings = {
main = {
capslock = "overload(control, esc)";
};
};
};
};
}