Skip to content

Commit

Permalink
Merge master into staging-next
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 10, 2024
2 parents 0644d3b + 4fee2cd commit aa75974
Show file tree
Hide file tree
Showing 7 changed files with 310 additions and 185 deletions.
2 changes: 1 addition & 1 deletion nixos/modules/services/computing/boinc/client.nix
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ in
after = ["network.target"];
wantedBy = ["multi-user.target"];
script = ''
${fhsEnvExecutable} --dir ${cfg.dataDir} ${allowRemoteGuiRpcFlag}
exec ${fhsEnvExecutable} --dir ${cfg.dataDir} ${allowRemoteGuiRpcFlag}
'';
serviceConfig = {
User = "boinc";
Expand Down
8 changes: 3 additions & 5 deletions nixos/modules/services/misc/guix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ in
systemd.services.guix-daemon = {
environment = serviceEnv;
script = ''
${lib.getExe' package "guix-daemon"} \
exec ${lib.getExe' package "guix-daemon"} \
--build-users-group=${cfg.group} \
${lib.optionalString (cfg.substituters.urls != [ ])
"--substitute-urls='${lib.concatStringsSep " " cfg.substituters.urls}'"} \
Expand Down Expand Up @@ -384,7 +384,7 @@ in
}
'';
script = ''
${lib.getExe' package "guix"} publish \
exec ${lib.getExe' package "guix"} publish \
--user=${cfg.publish.user} --port=${builtins.toString cfg.publish.port} \
${lib.escapeShellArgs cfg.publish.extraArgs}
'';
Expand Down Expand Up @@ -440,12 +440,10 @@ in
description = "Guix garbage collection";
startAt = cfg.gc.dates;
script = ''
${lib.getExe' package "guix"} gc ${lib.escapeShellArgs cfg.gc.extraArgs}
exec ${lib.getExe' package "guix"} gc ${lib.escapeShellArgs cfg.gc.extraArgs}
'';

serviceConfig = {
Type = "oneshot";

PrivateDevices = true;
PrivateNetwork = true;
ProtectControlGroups = true;
Expand Down
Loading

0 comments on commit aa75974

Please sign in to comment.