Price Hiller
0533f3049d
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
21 lines
372 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|