1
0
Fork 0
nix-configuration/modules/services/boinc.nix

38 lines
814 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.aux.system.services.boinc;
in
{
options = {
aux.system.services.boinc = {
enable = lib.mkEnableOption "Enables BOINC distributed computing service.";
home = lib.mkOption {
default = "/var/lib/boinc";
type = lib.types.str;
description = "Where to store BOINC's files";
};
};
};
config = lib.mkIf cfg.enable {
services.boinc = {
enable = true;
package = pkgs.boinc-headless;
dataDir = cfg.home;
extraEnvPackages = [
pkgs.ocl-icd
] ++ lib.optionals config.aux.system.gpu.nvidia.enable [ pkgs.linuxPackages.nvidia_x11 ];
allowRemoteGuiRpc = true;
};
# Allow connections via BOINC Manager
networking.firewall.allowedTCPPorts = [ 31416 ];
};
}