summaryrefslogtreecommitdiff
path: root/hm/soft/easyeffects.nix
blob: ab167362eaa799f8aeb3992ccc902ac6d2c14bca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, ... }:
let
  cfg = config.hm.soft.easyeffects;
in
{
  options.hm.soft.easyeffects.enable = lib.mkEnableOption "EasyEffects audio equalizer";
  config = lib.mkIf cfg.enable {
    services.easyeffects = {
      enable = true;
    };
  };
}