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

                           
         

                                         

  



                                                      
                                           

            
        
             
           
              




             
                          
                  
              
               

             
      
       
           
           
               

            
              
              
            
         
          


           
              

            
       
        
                   


                             
    

                             
 
# 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
    linuxPackages.cpupower
    linuxpkgs.perf
    lm_sensors
    lsb-release
    lsof
    man-pages
    mg
    mtr
    numactl
    openssl
    openssl.dev
    parted
    pciutils
    perf-tools
    pkg-config
    powertop
    rsync
    sqlite
    strace
    tcpdump
    tmux
    traceroute
    unzip
    usbutils
    vim
    wget
    wireguard-tools

    # my custom tools
    tools.perf-flamegraph-pid
  ];

  programs.bcc.enable = true;
}