feat: adds various networking programs/packages, move tailscale to core instead of services

This commit is contained in:
Ahwx 2026-01-26 21:00:51 +01:00
parent 30e5f08e76
commit 378ca5fa00

View file

@ -12,5 +12,29 @@
};
services = {
avahi.enable = lib.mkDefault false;
tailscale = {
enable = true;
useRoutingFeatures = "client";
extraUpFlags = [
# "--accept-dns=false"
"--accept-routes"
];
};
};
programs = {
wireshark.enable = true;
};
environment.systemPackages = with pkgs; [
dig
iftop
inetutils
ipcalc
iperf
nmap
tcpdump
traceroute
tshark
];
}