summaryrefslogtreecommitdiff
path: root/hm/soft/easyeffects.nix
blob: beb9ad659fe36dabe411225f22c74ff5c3419020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
    };
  };
}