feat(heimdall): setup ipv6.

This commit is contained in:
CronyAkatsuki 2025-05-08 08:42:55 +02:00
parent 90c55be6e4
commit 7b2757aacd

View File

@ -23,5 +23,19 @@
pkgs.gitMinimal
];
networking.useNetworkd = true;
systemd.network.enable = true;
systemd.network.networks."10-wan" = {
matchConfig.Name = "enp1s0"; # either ens3 or enp1s0 depending on system, check 'ip addr'
networkConfig.DHCP = "ipv4";
address = [
# replace this address with the one assigned to your instance
"2a01:4f9:c010:c279::1/64"
];
routes = [
{Gateway = "fe80::1";}
];
};
system.stateVersion = "24.05";
}