nixos/britway: Export route to Dublin
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 19m2s

This commit is contained in:
Jack O'Sullivan 2023-12-19 16:55:18 +00:00
parent 9b05e7cd8d
commit 10769a4441
2 changed files with 7 additions and 2 deletions

View File

@ -92,7 +92,10 @@ in
protocol kernel kernel6 { protocol kernel kernel6 {
ipv6 { ipv6 {
import none; import none;
export none; export filter {
if net = HOMENET6 then accept;
reject;
};
}; };
} }

View File

@ -118,7 +118,9 @@ in
}; };
}; };
firewall = { }; firewall = {
trustedInterfaces = [ "as211024" ];
};
}; };
} }
]; ];