mirror of
https://github.com/Mic92/nixos-wiki-infra.git
synced 2025-08-04 13:21:54 +02:00
10 lines
365 B
Nix
10 lines
365 B
Nix
{
|
|
# Allow Mic92's prometheus server to access telegraf
|
|
networking.firewall.extraCommands = ''
|
|
ip6tables -A nixos-fw -p tcp --source 2a01:4f8:1c1a:37b2::1/128 --dport 9273 -j nixos-fw-accept
|
|
'';
|
|
networking.firewall.extraStopCommands = ''
|
|
ip6tables -D nixos-fw -p tcp --source 2a01:4f8:1c1a:37b2::1/128 --dport 9273 -j nixos-fw-accept || true
|
|
'';
|
|
}
|