noisetorch

This commit is contained in:
Reid 2024-11-22 16:15:52 -08:00
parent 5c02e4b809
commit eba9476089
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
2 changed files with 15 additions and 0 deletions

View file

@ -88,6 +88,7 @@
tools.gpg.enable = true; tools.gpg.enable = true;
tools.mpv.enable = true; tools.mpv.enable = true;
tools.rbw.enable = true; tools.rbw.enable = true;
tools.noisetorch.enable = true;
}; };
}; };
} }

View file

@ -0,0 +1,14 @@
{ config, lib, ... }:
with lib;
let
cfg = config.modules.software.tools.noisetorch;
in {
options.modules.software.tools.noisetorch = {
enable = mkEnableOption "Enable noisetorch, a microphone noise supression tool";
};
config = mkIf cfg.enable {
programs.noisetorch.enable = true;
};
}