20 lines
380 B
Nix
20 lines
380 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
osConfig,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
config = lib.mkIf osConfig.custom.graphical.noise-supression.enable {
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "mic";
|
|
extraPresets = {
|
|
mic = builtins.fromJSON (builtins.readFile ./mic.json);
|
|
other_mic = builtins.fromJSON (builtins.readFile ./other_mic.json);
|
|
};
|
|
};
|
|
};
|
|
}
|