aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/system/software.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/system/software.nix')
-rw-r--r--hosts/common/system/software.nix11
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;