nixos/hosts/tor/tor.nix

18 lines
272 B
Nix
Raw Normal View History

2024-03-05 22:57:41 +01:00
{...}: {
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 = [
2024-03-05 22:57:41 +01:00
{
addr = "91.210.59.57";
port = 443;
}
{
addr = "[2a0d:3e83:1:b284::1]";
port = 443;
}
2023-08-11 17:43:23 +02:00
];
2023-08-06 22:08:38 +02:00
};
};
}