1
0
Fork 0
mirror of https://github.com/elitak/nixos-infect.git synced 2025-01-13 10:11:57 +03:00

Fix prefixLength for gateway6 route ()

This commit is contained in:
Johannes Spangenberg 2021-05-04 08:32:42 +02:00 committed by GitHub
parent 0fd9469d05
commit 58edeb3933
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ EOF
$a"; done) $a"; done)
]; ];
ipv4.routes = [ { address = "${gateway}"; prefixLength = 32; } ]; ipv4.routes = [ { address = "${gateway}"; prefixLength = 32; } ];
ipv6.routes = [ { address = "${gateway6}"; prefixLength = 32; } ]; ipv6.routes = [ { address = "${gateway6}"; prefixLength = 128; } ];
}; };
$interfaces1 $interfaces1
}; };