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

# Base set of packages to be expected everywhere.

with pkgs;

{
  environment.systemPackages = [
    file
    fd
    gitAndTools.gitMinimal
    htop
    openssl
    ranger
    inetutils
    traceroute
    vim
    vnstat
    wireguard-tools
    wget
  ];
}