flocon/modules/nix/services/keyd.nix

18 lines
296 B
Nix

{
lib,
pkgs,
config,
...
}: {
config = lib.mkIf config.local.profiles.desktop.enable {
services.keyd = {
enable = true;
keyboards.default = {
ids = ["*"];
settings.main = {
capslock = "overload(control, esc)";
};
};
};
};
}