dots/hosts/orion/modules/services/keyd.nix
Price Hiller 3e6d0b0340
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m3s
feat(nix/host/price): install keyd
2024-05-29 01:05:01 -05:00

20 lines
370 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";
};
};
};
};
}