nixfiles/common/environment.nix

22 lines
289 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
lshw
parted
wget
# network troubleshooting
inetutils
lsof
tcpdump
netcat # <3
# used for nix config
colmena
agenix
];
environment.wordlist.enable = true;
}