nixos/hosts/tor/tor.nix

12 lines
218 B
Nix
Raw Normal View History

2023-08-06 22:08:38 +02:00
{ ... }: {
services.tor = {
settings = {
2023-08-08 03:41:45 +02:00
Nickname = "DXV7520";
2023-08-11 17:43:23 +02:00
ORPort = [
{ addr = "91.210.59.57"; port = 443; }
{ addr = "[2a0d:3e83:1:b284::1]"; port = 443; }
];
2023-08-06 22:08:38 +02:00
};
};
}