about summary refs log tree commit diff
path: root/modules/systems/software.nix
blob: bedaf24404bc4bccd3afafd2912beb1f356e91fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{pkgs, config, lib, ...}:

{
  environment.systemPackages = with pkgs; [
    curl
    git
    htop
    hwdata
    iftop
    iptraf-ng
    lm_sensors
    mg
    parted
    parted
    pciutils
    rsync
    strace
    tcpdump
    tmux
    unzip
  ];
}