config/net/priv: fix priv43

This commit is contained in:
Astro 2022-01-17 21:35:00 +01:00
parent cbe473a497
commit 5f675b13d2
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ lib, ... }: { lib, ... }:
let let
privCount = 42; privCount = 43;
seq = n: max: seq = n: max:
if n <= max if n <= max
then [ n ] ++ seq (n + 1) max then [ n ] ++ seq (n + 1) max
@ -675,7 +675,7 @@ lib.mkMerge (
priv43-gw = { priv43-gw = {
interfaces = { interfaces = {
core.hwaddr = "0A:14:48:01:2A:52"; core.hwaddr = "0A:14:48:01:2A:52";
priv42.hwaddr = "0A:14:48:01:2A:53"; priv43.hwaddr = "0A:14:48:01:2A:53";
}; };
}; };
}; };