Files
nix-config/modules/graphical/noise-supression.nix
2024-04-16 21:53:03 +02:00

18 lines
375 B
Nix

{config, lib, pkgs, ...}:
with lib;
let
cfg = config.kop.graphical.noise-supression;
in
{
options.kop.graphical.noise-supression = {
enable = mkEnableOption "Enables noise-supression";
};
config = mkIf cfg.enable {
programs.noisetorch.enable = true;
environment.systemPackages = [
pkgs.easyeffects
];
};
}