summaryrefslogtreecommitdiff
path: root/modules/core/packages.nix
blob: b4e0c1bb5d3d783ab0c5d0ff81660020e625ccdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    git
    git-crypt
    helix
    devenv
    nixos-anywhere
    wireguard-tools

    busybox
    usbutils
    dig
    file
    gcc
    jq
    netcat
    tcpdump
    wget
    iftop
    htop
  ];
}