13 lines
185 B
Nix
13 lines
185 B
Nix
# NixOps configuration for the hosts running a TURN server (coturn)
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
networking = {
|
|
enableIPv6 = true;
|
|
tempAddresses = "disabled";
|
|
};
|
|
}
|