about summary refs log tree commit diff
path: root/hosts/common/system/software.nix
blob: fa919aec2b230e9f2294b4d83f0714ebed8deb7c (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
{pkgs, config, lib, ...}:

{
  environment.systemPackages = with pkgs; [
    curl
    dmidecode
    git
    htop
    hwdata
    iftop
    iptraf-ng
    lm_sensors
    lsb-release
    mg
    mtr
    openssl
    parted
    pciutils
    rsync
    strace
    tcpdump
    tmux
    traceroute
    unzip
    usbutils
    vim
    wget
  ];
}