Price Hiller
3e6d0b0340
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m3s
20 lines
370 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |