interim xerneas

This commit is contained in:
James Andariese 2025-04-19 00:35:49 -05:00
parent 210d5b135c
commit 83b317227b

View File

@ -4,17 +4,17 @@
{ config, pkgs, lib, inputs, ... }:
let iface = import ../iface-templates.nix;
in {
{
imports =
[ # Include the results of the hardware scan.
../types/server.nix
];
config = lib.mkMerge [
(iface.bridge "lan0" "172.16.1.252/12" "172.16.1.1" "phy0" "d8:9e:f3:1b:7f:8a")
(iface.dhcp "phy1" "98:b7:85:01:39:1a")
(iface.dhcp "phy2" "98:b7:85:01:39:1b")
(iface.dhcp "phy3" "98:b7:85:01:39:1c")
(iface.dhcp "phy4" "98:b7:85:01:39:1d")
{networking.interfaces.enp0s31f6.ipv4.addresses = [ address = "172.16.1.252"; prefixLength = 12; }]}
#(iface.bridge "lan0" "172.16.1.252/12" "172.16.1.1" "phy0" "d8:9e:f3:1b:7f:8a")
#(iface.dhcp "phy1" "98:b7:85:01:39:1a")
#(iface.dhcp "phy2" "98:b7:85:01:39:1b")
#(iface.dhcp "phy3" "98:b7:85:01:39:1c")
#(iface.dhcp "phy4" "98:b7:85:01:39:1d")
];
}