aboutsummaryrefslogblamecommitdiff
path: root/hosts/common/system/software.nix
blob: 1f746fb1d15f11df88f408b0c3c6be3aef668fa4 (plain) (tree)
1
2
3
4
5
6
7
8
9

                         


                                           

                                           
             
              




             
                  
              
               
      
       
           

            
              



           
              

            
       
        
    

                             
 
{pkgs, config, lib, ...}:

with lib;
let linuxpkgs = config.boot.kernelPackages;
in {
  environment.systemPackages = with pkgs; [
    curl
    dmidecode
    flameGraph
    git
    htop
    hwdata
    iftop
    iptraf-ng
    linuxpkgs.perf
    lm_sensors
    lsb-release
    mg
    mtr
    openssl
    parted
    pciutils
    perf-tools
    rsync
    strace
    tcpdump
    tmux
    traceroute
    unzip
    usbutils
    vim
    wget
  ];

  programs.bcc.enable = true;
}