aboutsummaryrefslogblamecommitdiff
path: root/hosts/common/system/software.nix
blob: 9cdce01e25d14d74bf80b9c774b409d8eeac3692 (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; [
    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
    sqlite
    strace
    tcpdump
    tmux
    traceroute
    unzip
    usbutils
    vim
    wget
    wireguard
  ];

  programs.bcc.enable = true;
}