My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/configuration/server/tor/default.nix

19 lines
340 B

{ config, ... }:
{
networking.firewall.allowedTCPPorts = [ 143 ];
services.tor = {
enable = true;
relay = {
enable = true;
role = "relay";
nickname = "hyperion";
contactInfo = "kookie@spacekookie.de";
port = 143;
};
extraConfig = ''
ORPort [2a01:4f9:2b:1148::]:143
'';
};
}