diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/common/system/software.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/common/system/software.nix b/hosts/common/system/software.nix index 63643e9..9cdce01 100644 --- a/hosts/common/system/software.nix +++ b/hosts/common/system/software.nix @@ -1,9 +1,8 @@ -{pkgs, config, lib, ...}: +{ pkgs, config, lib, ... }: with lib; -let - linuxpkgs = config.boot.kernelPackages; +let linuxpkgs = config.boot.kernelPackages; in { environment.systemPackages = with pkgs; [ binutils @@ -30,6 +29,7 @@ in { perf-tools powertop rsync + sqlite strace tcpdump tmux |