11 lines
184 B
Nix
11 lines
184 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.sxhkd.enable = true;
|
|
services.sxhkd.extraConfig = builtins.readFile ./sxhkdrc;
|
|
|
|
# home.file.".config/sxhkd/sxhkdrc".source = ./sxhkdrc;
|
|
}
|