Compare commits

..

No commits in common. "c22bdf926f80c34ef4a01e091be9cd0eb7c798e7" and "5c02e4b809110827c2c312affb820426376314e2" have entirely different histories.

3 changed files with 0 additions and 16 deletions

View file

@ -76,7 +76,6 @@ in {
hardware.enableRedistributableFirmware = true;
environment.systemPackages = with pkgs; [
openssh mosh
unrar unzip
micro
curl wget

View file

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

View file

@ -1,14 +0,0 @@
{ 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;
};
}