Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c7348b010bdb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 57e20c5d8735
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 25, 2020

  1. Copy the full SHA
    bb549ca View commit details
  2. nixos/boinc: create boinc group

    This allows users that are members of the boinc group
    to interact with the boinc service by running:
    
    boincmgr -d /var/lib/boinc
    bachp committed Mar 25, 2020
    Copy the full SHA
    2e5835c View commit details

Commits on Apr 14, 2020

  1. Merge pull request #83362 from bachp/boinc

    nixos/boinc: simplify setup of boinc service
    matthewbauer authored Apr 14, 2020
    Copy the full SHA
    57e20c5 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 nixos/modules/services/computing/boinc/client.nix
6 changes: 4 additions & 2 deletions nixos/modules/services/computing/boinc/client.nix
Original file line number Diff line number Diff line change
@@ -99,22 +99,24 @@ in
environment.systemPackages = [cfg.package];

users.users.boinc = {
group = "boinc";
createHome = false;
description = "BOINC Client";
home = cfg.dataDir;
isSystemUser = true;
};
users.groups.boinc = {};

systemd.tmpfiles.rules = [
"d '${cfg.dataDir}' - boinc - - -"
"d '${cfg.dataDir}' - boinc boinc - -"
];

systemd.services.boinc = {
description = "BOINC Client";
after = ["network.target"];
wantedBy = ["multi-user.target"];
script = ''
${fhsEnvExecutable} --dir ${cfg.dataDir} --redirectio ${allowRemoteGuiRpcFlag}
${fhsEnvExecutable} --dir ${cfg.dataDir} ${allowRemoteGuiRpcFlag}
'';
serviceConfig = {
User = "boinc";