mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
Add eq config
This commit is contained in:
parent
b915c75c2e
commit
60f587bfd6
6 changed files with 270 additions and 5 deletions
16
modules/home/equalizer/default.nix
Normal file
16
modules/home/equalizer/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue