nixfiles/common/environment.nix

20 lines
268 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
btop
git
lshw
parted
wget
# network troubleshooting
inetutils
lsof
tcpdump
netcat # <3
wireguard-tools
];
environment.wordlist.enable = true;
}