summaryrefslogtreecommitdiff
path: root/Biz/packages.nix
blob: ea032fe2f85664114c10f21e943307f383126a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, ... }:

# Base set of packages to be expected everywhere.

with pkgs;

{
  environment.systemPackages = [
    file
    gitAndTools.gitFull
    htop
    python3
    ranger
    telnet
    traceroute
    vim
    vnstat
    wget
  ];
}