mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
13 lines
289 B
Nix
13 lines
289 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|