Jump to content

BOINC: Difference between revisions

From NixOS Wiki
imported>Klaymore
Started page
 
Luflosi (talk | contribs)
Add user to BOINC group
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
BOINC lets you contribute computing power on your home PC to projects doing research in many scientific areas. You can contribute to a single project, or to any combination of them. To install BOINC on NixOS, Add this to your configuration.nix:
[http://boinc.berkeley.edu/ BOINC] lets you contribute computing power on your home PC to projects doing research in many scientific areas. You can contribute to a single project, or to any combination of them. To install and enable BOINC on NixOS, add this to your <code>configuration.nix</code>:


<syntaxHighlight lang="nix">
<syntaxhighlight lang="nix">
services.boinc = {
services.boinc.enable = true;
  enable = true;
services.boinc.extraEnvPackages = [ pkgs.libglvnd pkgs.brotli ]; #Rosetta Beta 6.05 needs libGL.so.1 and libbrotlidec.so.1
  dataDir = "/var/lib/boinc";    # default location where data is stored
users.users.YourUserNameHere.extraGroups = [ "boinc" ]; # Needed for boincmgr to read /var/lib/boinc/gui_rpc_auth.cfg
};
</syntaxhighlight>
</syntaxHighlight>




Then to open the BOINC Manager, you can run the command <code>boincmgr</code>.
Then to open the [https://boinc.berkeley.edu/wiki/BOINC_Manager BOINC Manager], you can run the command <code>boincmgr</code>.
[[Category:Applications]]

Latest revision as of 13:28, 31 October 2025

BOINC lets you contribute computing power on your home PC to projects doing research in many scientific areas. You can contribute to a single project, or to any combination of them. To install and enable BOINC on NixOS, add this to your configuration.nix:

services.boinc.enable = true;
services.boinc.extraEnvPackages = [ pkgs.libglvnd pkgs.brotli ]; #Rosetta Beta 6.05 needs libGL.so.1 and libbrotlidec.so.1
users.users.YourUserNameHere.extraGroups = [ "boinc" ]; # Needed for boincmgr to read /var/lib/boinc/gui_rpc_auth.cfg


Then to open the BOINC Manager, you can run the command boincmgr.