ci: fix networking definition

This commit is contained in:
Aaron Bieber 2023-10-22 09:14:06 -06:00
parent 128fad930d
commit 5f609d60d9
No known key found for this signature in database

View File

@ -81,15 +81,17 @@ with lib; {
mosh
];
firewall = {
interfaces = {
"tailscale0" = {
allowedUDPPortRanges = [
{
from = 60000;
to = 61000;
}
];
networking = {
firewall = {
interfaces = {
"tailscale0" = {
allowedUDPPortRanges = [
{
from = 60000;
to = 61000;
}
];
};
};
};
};