nixos/zeronet: Update TOR settings

This commit is contained in:
Xerydian
2026-07-12 14:47:21 +02:00
committed by FliegendeWurst
parent e034e38676
commit dc83a880ab
@@ -96,13 +96,13 @@ with lib;
config = mkIf cfg.enable {
services.tor = mkIf cfg.tor {
enable = true;
controlPort = 9051;
extraConfig = ''
CacheDirectoryGroupReadable 1
CookieAuthentication 1
CookieAuthFileGroupReadable 1
'';
settings = {
ControlPort = 9051;
CacheDirectoryGroupReadable = true;
CookieAuthentication = true;
CookieAuthFileGroupReadable = true;
};
};
systemd.services.zeronet = {