noisetorch
This commit is contained in:
parent
5c02e4b809
commit
eba9476089
2 changed files with 15 additions and 0 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
14
modules/software/tools/noisetorch.nix
Normal file
14
modules/software/tools/noisetorch.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue