diff --git a/modules/services/boinc.nix b/modules/services/boinc.nix index df87934..6b835de 100644 --- a/modules/services/boinc.nix +++ b/modules/services/boinc.nix @@ -21,6 +21,10 @@ in package = pkgs.boinc-headless; dataDir = "/var/lib/boinc"; extraEnvPackages = [ pkgs.ocl-icd ]; + allowRemoteGuiRpc = true; }; + + # Allow connections via BOINC Manager + networking.firewall.allowedTCPPorts = [ 31416 ]; }; }