14 lines
281 B
Nix
14 lines
281 B
Nix
{ inputs, pkgs, ... } : {
|
|
services.wg-obfuscator = {
|
|
enable = true;
|
|
|
|
instances.client = {
|
|
enable = true;
|
|
listenPort = 51821;
|
|
target = "168.222.255.234:21377";
|
|
key = "SPERMAUNITAZ";
|
|
masking = "AUTO";
|
|
interface = "0.0.0.0";
|
|
};
|
|
};
|
|
} |