summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-08-10 11:31:05 -0600
committerAlejandro Soto <alejandro@34project.org>2024-08-10 11:31:05 -0600
commitd9c39be2f5cf057e2064d4990315314f4192b0a1 (patch)
tree29f9aab98eb1e542b260e9baf2460b28d1a52a21 /sys
parentda992b366ce234167f223a9bf25dba2dcf967af4 (diff)
sys/net: add dnsutils, nmap, socat, tcpdump
Diffstat (limited to 'sys')
-rw-r--r--sys/net/interfaces.nix8
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;