about summary refs log tree commit diff
path: root/modules/system/packages/default.nix
blob: 84cfac2c59c01c2b68ede4748a840fd2b3766de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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
    parted
    pciutils
    perf-tools
    powertop
    rsync
    sqlite
    strace
    tcpdump
    tmux
    traceroute
    unzip
    usbutils
    vim
    wget
    wireguard-tools
  ];

  programs.bcc.enable = true;
}