Compare commits
2 commits
5c02e4b809
...
c22bdf926f
Author | SHA1 | Date | |
---|---|---|---|
c22bdf926f | |||
eba9476089 |
3 changed files with 16 additions and 0 deletions
|
@ -76,6 +76,7 @@ in {
|
|||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
openssh mosh
|
||||
unrar unzip
|
||||
micro
|
||||
curl wget
|
||||
|
|
|
@ -88,6 +88,7 @@
|
|||
tools.gpg.enable = true;
|
||||
tools.mpv.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