mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-03-19 15:50:30 +01: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 = {
|
services = {
|
||||||
avahi.enable = lib.mkDefault false;
|
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