12 lines
234 B
Nix
12 lines
234 B
Nix
{...}: {
|
|
networking = {
|
|
nat = {
|
|
enable = true;
|
|
enableIPv6 = true;
|
|
externalInterface = "ens3";
|
|
internalInterfaces = [
|
|
"wg0"
|
|
];
|
|
};
|
|
};
|
|
}
|