grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / computing / boinc / client.nix
blob01608d33d8d1d7705eb2215ecb959a162a7c47cf
1 {config, lib, pkgs, ...}:
2 let
3   cfg = config.services.boinc;
4   allowRemoteGuiRpcFlag = lib.optionalString cfg.allowRemoteGuiRpc "--allow_remote_gui_rpc";
6   fhsEnv = pkgs.buildFHSEnv {
7     name = "boinc-fhs-env";
8     targetPkgs = pkgs': [ cfg.package ] ++ cfg.extraEnvPackages;
9     runScript = "/bin/boinc_client";
10   };
11   fhsEnvExecutable = "${fhsEnv}/bin/${fhsEnv.name}";
14   {
15     options.services.boinc = {
16       enable = lib.mkOption {
17         type = lib.types.bool;
18         default = false;
19         description = ''
20           Whether to enable the BOINC distributed computing client. If this
21           option is set to true, the boinc_client daemon will be run as a
22           background service. The boinccmd command can be used to control the
23           daemon.
24         '';
25       };
27       package = lib.mkPackageOption pkgs "boinc" {
28         example = "boinc-headless";
29       };
31       dataDir = lib.mkOption {
32         type = lib.types.path;
33         default = "/var/lib/boinc";
34         description = ''
35           The directory in which to store BOINC's configuration and data files.
36         '';
37       };
39       allowRemoteGuiRpc = lib.mkOption {
40         type = lib.types.bool;
41         default = false;
42         description = ''
43           If set to true, any remote host can connect to and control this BOINC
44           client (subject to password authentication). If instead set to false,
45           only the hosts listed in {var}`dataDir`/remote_hosts.cfg will be allowed to
46           connect.
48           See also: <https://boinc.berkeley.edu/wiki/Controlling_BOINC_remotely#Remote_access>
49         '';
50       };
52       extraEnvPackages = lib.mkOption {
53         type = lib.types.listOf lib.types.package;
54         default = [];
55         example = lib.literalExpression "[ pkgs.virtualbox ]";
56         description = ''
57           Additional packages to make available in the environment in which
58           BOINC will run. Common choices are:
60           - {var}`pkgs.virtualbox`:
61             The VirtualBox virtual machine framework. Required by some BOINC
62             projects, such as ATLAS@home.
63           - {var}`pkgs.ocl-icd`:
64             OpenCL infrastructure library. Required by BOINC projects that
65             use OpenCL, in addition to a device-specific OpenCL driver.
66           - {var}`pkgs.linuxPackages.nvidia_x11`:
67             Provides CUDA libraries. Required by BOINC projects that use
68             CUDA. Note that this requires an NVIDIA graphics device to be
69             present on the system.
71             Also provides OpenCL drivers for NVIDIA GPUs;
72             {var}`pkgs.ocl-icd` is also needed in this case.
73         '';
74       };
75     };
77     config = lib.mkIf cfg.enable {
78       environment.systemPackages = [cfg.package];
80       users.users.boinc = {
81         group = "boinc";
82         createHome = false;
83         description = "BOINC Client";
84         home = cfg.dataDir;
85         isSystemUser = true;
86       };
87       users.groups.boinc = {};
89       systemd.tmpfiles.rules = [
90         "d '${cfg.dataDir}' - boinc boinc - -"
91       ];
93       systemd.services.boinc = {
94         description = "BOINC Client";
95         after = ["network.target"];
96         wantedBy = ["multi-user.target"];
97         script = ''
98           ${fhsEnvExecutable} --dir ${cfg.dataDir} ${allowRemoteGuiRpcFlag}
99         '';
100         serviceConfig = {
101           User = "boinc";
102           Nice = 10;
103         };
104       };
105     };
107     meta = {
108       maintainers = with lib.maintainers; [ ];
109     };
110   }