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

                         
         


                                         
    
                                           

            
        
             
              




             
                  
              
               

             
      
       
           
           

            
              
            



           
              

            
       
        
             
    

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

with lib;

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

  programs.bcc.enable = true;
}