diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-08-10 11:31:05 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-08-10 11:31:05 -0600 |
| commit | d9c39be2f5cf057e2064d4990315314f4192b0a1 (patch) | |
| tree | 29f9aab98eb1e542b260e9baf2460b28d1a52a21 /sys/net/interfaces.nix | |
| parent | da992b366ce234167f223a9bf25dba2dcf967af4 (diff) | |
sys/net: add dnsutils, nmap, socat, tcpdump
Diffstat (limited to 'sys/net/interfaces.nix')
| -rw-r--r-- | sys/net/interfaces.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/net/interfaces.nix b/sys/net/interfaces.nix index 11b9621..9203c1f 100644 --- a/sys/net/interfaces.nix +++ b/sys/net/interfaces.nix @@ -17,7 +17,13 @@ in }; config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.dhcpcd ]; + environment.systemPackages = with pkgs; [ + dhcpcd + dnsutils + nmap + socat + tcpdump + ]; networking = { domain = mkDefault config.local.domains.host.main; |
