nixcfg/homeManagerModules/services/easyeffects/default.nix

20 lines
563 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
lib,
config,
...
}: {
config = lib.mkIf config.ar.home.services.easyeffects.enable {
xdg.configFile = {
"easyeffects/output/framework13.json".source = ./framework13.json;
2024-10-15 23:10:37 -04:00
"easyeffects/output/fw13-autogain.json".source = ./fw13-autogain.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;
};
};
}