Files
nix-config/modules/graphical/noise-supression.nix
2024-04-17 16:33:12 +02:00

18 lines
381 B
Nix

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