mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-02-22 12:55:13 +08:00
feat: adds various networking programs/packages, move tailscale to core instead of services
This commit is contained in:
parent
30e5f08e76
commit
378ca5fa00
1 changed files with 24 additions and 0 deletions
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue