nix/host/x86_64-linux/work/Network.nix

10 lines
155 B
Nix

{ ... }:
{
networking = {
firewall.extraCommands = ''
# Local access.
ip6tables -I INPUT -j ACCEPT -s fd09:8d46:0b26::/48
'';
};
}