diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-21 08:54:44 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-21 08:54:44 -0800 |
| commit | 26be9cfc4f505b39bc4e04bdd63c6aec97477122 (patch) | |
| tree | 74d5363f9f7bdf035bedcd0f31d2d8ea6e921843 /hosts/common/system/software.nix | |
| parent | sway: remove environment variables (diff) | |
| download | infra-26be9cfc4f505b39bc4e04bdd63c6aec97477122.tar.gz | |
system: install a few more packages
Diffstat (limited to 'hosts/common/system/software.nix')
| -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; |
