further changes

This commit is contained in:
root 2025-11-06 00:36:02 +00:00
parent cc806b713b
commit 3174825d6a
8 changed files with 56 additions and 11 deletions

View file

@ -11,6 +11,12 @@
};
kubo.enable = true;
tor.relay.onionServices."site".map = [
8333
18080
4001
];
};
networking.firewall.allowedTCPPorts = [8333 18080 4001];

View file

@ -11,5 +11,6 @@
./crypto.nix
./vaultwarden.nix
./mailserver.nix
./tor.nix
];
}

10
services/tor.nix Normal file
View file

@ -0,0 +1,10 @@
{
services.tor = {
enable = true;
relay = {
enable = true;
role = "relay";
};
settings.Nickname = "Distrust";
};
}