Add eq config

This commit is contained in:
SebastianStork 2024-04-22 23:22:26 +02:00
parent b915c75c2e
commit 60f587bfd6
6 changed files with 270 additions and 5 deletions

View file

@ -0,0 +1,16 @@
{
config,
lib,
...
}: {
options.myConfig.equalizer.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.equalizer.enable {
services.easyeffects.enable = true;
xdg.configFile."easyeffects/output" = {
source = ./output;
recursive = true;
};
};
}