nixos-config/machines/massicot/networking.nix

13 lines
274 B
Nix
Raw Permalink Normal View History

2024-08-25 09:45:58 +00:00
{ pkgs, ... }:
{
2024-09-14 08:33:01 +00:00
networking.useNetworkd = true;
systemd.network.networks."10-wan" = {
matchConfig.MACAddress = "96:00:02:68:7d:2d";
networkConfig.DHCP = "ipv4";
networkConfig.Gateway = "fe80::1";
address = [
"2a01:4f8:c17:345f::3/64"
];
2023-07-29 15:34:24 +00:00
};
2023-09-11 12:20:32 +00:00
}