mirror of
https://github.com/elitak/nixos-infect
synced 2024-11-10 05:54:20 +00:00
missed one more usage of the old configuration keys
This commit is contained in:
parent
87920dc1ce
commit
f657821bb5
1 changed files with 2 additions and 2 deletions
|
@ -80,10 +80,10 @@ EOF
|
||||||
defaultGateway6 = "${gateway6}";
|
defaultGateway6 = "${gateway6}";
|
||||||
interfaces = {
|
interfaces = {
|
||||||
$eth0_name = {
|
$eth0_name = {
|
||||||
ip4 = [$(for a in "${eth0_ip4s[@]}"; do echo -n "
|
ipv4.addresses = [$(for a in "${eth0_ip4s[@]}"; do echo -n "
|
||||||
$a"; done)
|
$a"; done)
|
||||||
];
|
];
|
||||||
ip6 = [$(for a in "${eth0_ip6s[@]}"; do echo -n "
|
ipv6.addresses = [$(for a in "${eth0_ip6s[@]}"; do echo -n "
|
||||||
$a"; done)
|
$a"; done)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue