nixos/network-interfaces: Add ipv6 gateway support

This commit is contained in:
William A. Kennington III
2014-12-17 17:56:29 -08:00
parent c812e45292
commit 1036c66d43
3 changed files with 17 additions and 0 deletions
@@ -256,6 +256,15 @@ in
'';
};
networking.defaultGateway6 = mkOption {
default = null;
example = "2001:4d0:1e04:895::1";
type = types.nullOr types.str;
description = ''
The default ipv6 gateway. It can be left empty if it is auto-detected through DHCP.
'';
};
networking.defaultGatewayWindowSize = mkOption {
default = null;
example = 524288;