diff options
Diffstat (limited to 'hm/soft/easyeffects.nix')
| -rw-r--r-- | hm/soft/easyeffects.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hm/soft/easyeffects.nix b/hm/soft/easyeffects.nix new file mode 100644 index 0000000..beb9ad6 --- /dev/null +++ b/hm/soft/easyeffects.nix @@ -0,0 +1,13 @@ +{ config, lib, ... }: +let + cfg = config.szpont.hm.soft.easyeffects; +in +{ + options.szpont.hm.soft.easyeffects.enable = lib.mkEnableOption "EasyEffects audio equalizer"; + + config = lib.mkIf cfg.enable { + services.easyeffects = { + enable = true; + }; + }; +} |
