summary refs log tree commit diff
path: root/nixos/modules/services/computing/boinc
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2020-03-25 12:45:12 +0100
committerPascal Bach <pascal.bach@nextrem.ch>2020-03-25 13:25:34 +0100
commitbb549ca2d489bd6dbc8d45504573dcb6242eae20 (patch)
tree6402a5fead669ece2779289ee8b3ae0cc42b3f65 /nixos/modules/services/computing/boinc
parentd96bd3394b734487d1c3bfbac0e8f17465e03afe (diff)
downloadnixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.tar
nixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.tar.gz
nixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.tar.bz2
nixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.tar.lz
nixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.tar.xz
nixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.tar.zst
nixpkgs-bb549ca2d489bd6dbc8d45504573dcb6242eae20.zip
nixos/boinc: log to journal instead of log file
Diffstat (limited to 'nixos/modules/services/computing/boinc')
-rw-r--r--nixos/modules/services/computing/boinc/client.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/computing/boinc/client.nix b/nixos/modules/services/computing/boinc/client.nix
index a7edac02538..fc5bcddfb7c 100644
--- a/nixos/modules/services/computing/boinc/client.nix
+++ b/nixos/modules/services/computing/boinc/client.nix
@@ -114,7 +114,7 @@ in
         after = ["network.target"];
         wantedBy = ["multi-user.target"];
         script = ''
-          ${fhsEnvExecutable} --dir ${cfg.dataDir} --redirectio ${allowRemoteGuiRpcFlag}
+          ${fhsEnvExecutable} --dir ${cfg.dataDir} ${allowRemoteGuiRpcFlag}
         '';
         serviceConfig = {
           User = "boinc";