noisetorch

This commit is contained in:
Reid 2024-12-30 20:24:51 -08:00
parent e9a52bfa01
commit 696e37e35c
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
2 changed files with 15 additions and 0 deletions

View file

@ -91,6 +91,7 @@
# tools
tools.gpg.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;
};
}