summary refs log tree commit diff
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2019-03-07 18:56:29 +0100
committerGitHub <noreply@github.com>2019-03-07 18:56:29 +0100
commit34e67f3f9f200dad2638f7f14d2706a10b33e216 (patch)
tree2041121f161932264a0a8ae45328c47a409dc86b
parent6a69ce97506d5a3801418a8872fb73f52efe2b46 (diff)
parentc568dad2539fc3375583e04b9791fa58619c5af2 (diff)
downloadnixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.tar
nixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.tar.gz
nixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.tar.bz2
nixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.tar.lz
nixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.tar.xz
nixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.tar.zst
nixpkgs-34e67f3f9f200dad2638f7f14d2706a10b33e216.zip
Merge pull request #56578 from serokell/youtrack-hostname
youtrack: add hostname to path
-rw-r--r--nixos/modules/services/web-apps/youtrack.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/web-apps/youtrack.nix b/nixos/modules/services/web-apps/youtrack.nix
index 6ad38028a64..691cbdc8d1d 100644
--- a/nixos/modules/services/web-apps/youtrack.nix
+++ b/nixos/modules/services/web-apps/youtrack.nix
@@ -121,6 +121,7 @@ in
       environment.YOUTRACK_JVM_OPTS = "${extraAttr}";
       after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
+      path = with pkgs; [ unixtools.hostname ];
       serviceConfig = {
         Type = "simple";
         User = "youtrack";