mirror of
https://github.com/elitak/nixos-infect
synced 2024-11-10 05:54:20 +00:00
Fix prefixLength for gateway6 route (#73)
This commit is contained in:
parent
0fd9469d05
commit
58edeb3933
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue