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