summaryrefslogtreecommitdiff
path: root/modules/core/packages.nix
blob: 16ff1409bca028e1e6017a976cf7c08db5907c48 (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

    busybox
    usbutils
    dig
    file
    gcc
    jq
    netcat
    tcpdump
    wget
    iftop
    htop

    nixos-anywhere
  ];
}