nixos-conf/services/nat64.nix

12 lines
190 B
Nix
Raw Normal View History

{ ... }:
2024-09-20 21:15:58 +03:00
{
2025-01-08 19:22:02 +02:00
networking = {
jool = {
enable = true;
nat64.default = {
global.pool6 = "64:ff9b::/96"; # Default value made explicit for clarity
};
};
2024-09-20 21:15:58 +03:00
};
}