about summary refs log tree commit diff
path: root/modules/systems/software.nix
blob: 897b931dea893342572dd52892904c687fb282fc (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
{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
    vim
  ];
}