From 5afa8d15cb8621ec9d9cf08a3634c0e6dc6b10ea Mon Sep 17 00:00:00 2001 From: Jakob Klepp <1183303+truh@users.noreply.github.com> Date: Tue, 7 May 2024 19:16:29 +0200 Subject: [PATCH] plantuml-server: remove unnecessary systemd option path @nh2 pointed out that adding `/var/lib/plantuml/bin` to `PATH` is odd --- nixos/modules/services/web-apps/plantuml-server.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/web-apps/plantuml-server.nix b/nixos/modules/services/web-apps/plantuml-server.nix index 91a5be124d08..648a74c8b72a 100644 --- a/nixos/modules/services/web-apps/plantuml-server.nix +++ b/nixos/modules/services/web-apps/plantuml-server.nix @@ -97,7 +97,6 @@ in systemd.services.plantuml-server = { description = "PlantUML server"; wantedBy = [ "multi-user.target" ]; - path = [ cfg.home ]; environment = { PLANTUML_LIMIT_SIZE = builtins.toString cfg.plantumlLimitSize;