dots/hosts/orion/modules/services/keyd.nix
Price Hiller 0533f3049d
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
style: fmt
2024-06-02 13:00:49 -05:00

21 lines
372 B
Nix

{ ... }:
{
users.groups.keyd = { };
systemd.services.keyd.serviceConfig.Group = "keyd";
services.keyd = {
enable = true;
keyboards.default = {
ids = [ "*" ];
settings = {
main = {
leftmeta = "layer(meta_custom)";
};
"meta_custom:M" = {
c = "C-c";
v = "C-v";
};
};
};
};
}