Skip to content

Commit

Permalink
enable IPv6 on metal
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldsteinE committed Oct 14, 2024
1 parent 232af2e commit 9d482ef
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions modules/metal/networking.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,16 @@
firewall = {
allowedTCPPorts = [ 7643 80 443 19423 ];
};
interfaces.enp6s0.ipv6 = {
addresses = [{
address = "2a01:4f8:13b:f58::1";
prefixLength = 64;
}];
routes = [{
via = "fe80::1";
address = "::";
prefixLength = 0;
}];
};
};
}

0 comments on commit 9d482ef

Please sign in to comment.