aboutsummaryrefslogblamecommitdiff
path: root/modules/system/packages/default.nix
blob: 49d7920ea3a6e7ca559db091d9b42e40f2c147ce (plain) (tree)
1
2
3
4
5
6
7
8
9

                           
         
                                           
    



                                                      
                                           

            
        
             
           
              




             
                  
              
               

             
      
       
           
           

            
              
            
         
          


           
              

            
       
        
             
    

                             
 
# Common packages
{ config, lib, pkgs, ... }:
with lib;
let linuxpkgs = config.boot.kernelPackages;
in {

  # It's always useful to have bash around
  environment.shells = with pkgs; [ bashInteractive ];

  environment.systemPackages = with pkgs; [
    binutils
    cacert
    curl
    dmidecode
    ethtool
    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;
}