summary refs log tree commit diff
path: root/nixos/modules/services/web-apps
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-02-17 13:37:39 +0100
committerGitHub <noreply@github.com>2023-02-17 13:37:39 +0100
commit4fba4ceab7985cf395a8aaa583b5e7ce91457b99 (patch)
tree1b8fea97a8f84d82269d46959aa998414cb384e9 /nixos/modules/services/web-apps
parent9ac2687512bca748e6046545cd9f16b49b684b8b (diff)
parent5a1ba628417ce5f6151bea3f37351d8e68383252 (diff)
downloadnixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.tar
nixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.tar.gz
nixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.tar.bz2
nixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.tar.lz
nixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.tar.xz
nixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.tar.zst
nixpkgs-4fba4ceab7985cf395a8aaa583b5e7ce91457b99.zip
Merge pull request #215407 from aopom/onlyoffice-mergeable-execstartpre
nixos/onlyoffice: allow ExecStartPre additions
Diffstat (limited to 'nixos/modules/services/web-apps')
-rw-r--r--nixos/modules/services/web-apps/onlyoffice.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/onlyoffice.nix b/nixos/modules/services/web-apps/onlyoffice.nix
index 6a8a28185b5..3494f2fa21f 100644
--- a/nixos/modules/services/web-apps/onlyoffice.nix
+++ b/nixos/modules/services/web-apps/onlyoffice.nix
@@ -270,7 +270,7 @@ in
           wantedBy = [ "multi-user.target" ];
           serviceConfig = {
             ExecStart = "${cfg.package.fhs}/bin/onlyoffice-wrapper DocService/docservice /run/onlyoffice/config";
-            ExecStartPre = onlyoffice-prestart;
+            ExecStartPre = [ onlyoffice-prestart ];
             Group = "onlyoffice";
             Restart = "always";
             RuntimeDirectory = "onlyoffice";