diff options
-rw-r--r-- | hosts/common/system/software.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/common/system/software.nix b/hosts/common/system/software.nix index 1f746fb..63643e9 100644 --- a/hosts/common/system/software.nix +++ b/hosts/common/system/software.nix @@ -1,9 +1,13 @@ {pkgs, config, lib, ...}: with lib; -let linuxpkgs = config.boot.kernelPackages; + +let + linuxpkgs = config.boot.kernelPackages; in { environment.systemPackages = with pkgs; [ + binutils + cacert curl dmidecode flameGraph @@ -15,12 +19,16 @@ in { linuxpkgs.perf lm_sensors lsb-release + lsof + man-pages mg mtr openssl + openssl parted pciutils perf-tools + powertop rsync strace tcpdump @@ -30,6 +38,7 @@ in { usbutils vim wget + wireguard ]; programs.bcc.enable = true; |