mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
19 lines
486 B
Nix
19 lines
486 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.services.easyeffects.enable {
|
|
xdg.configFile = {
|
|
"easyeffects/output/framework13.json".source = ./framework13.json;
|
|
"easyeffects/output/fw13-easy-effects.json".source = ./framework13.json;
|
|
"easyeffects/output/LoudnessEqualizer.json".source = ./LoudnessEqualizer.json;
|
|
};
|
|
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = config.ar.home.services.easyeffects.preset;
|
|
};
|
|
};
|
|
}
|