Compare commits

..

2 commits

Author SHA1 Message Date
c22bdf926f
mosh+ssh in default packages 2024-11-22 16:36:03 -08:00
eba9476089
noisetorch 2024-11-22 16:15:52 -08:00
3 changed files with 16 additions and 0 deletions

View file

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

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;
};
}