about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-21 08:54:44 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-21 08:54:44 -0800
commit26be9cfc4f505b39bc4e04bdd63c6aec97477122 (patch)
tree74d5363f9f7bdf035bedcd0f31d2d8ea6e921843 /hosts
parentsway: remove environment variables (diff)
downloadworld-26be9cfc4f505b39bc4e04bdd63c6aec97477122.tar.gz
system: install a few more packages
Diffstat (limited to 'hosts')
-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;