From 0fce533e70f632b1c07a06d2672d7911900e76c7 Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Mon, 6 Jan 2020 11:10:55 -0500 Subject: [PATCH] lorri: add `gitMinimal` to daemon path Fixes https://github.com/target/lorri/issues/255 when the service is installed through home-manager. PR #975 --- modules/services/lorri.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/lorri.nix b/modules/services/lorri.nix index 032ae6377..351afbc1d 100644 --- a/modules/services/lorri.nix +++ b/modules/services/lorri.nix @@ -34,7 +34,7 @@ in ProtectHome = "read-only"; Restart = "on-failure"; Environment = - let path = with pkgs; makeSearchPath "bin" [ nix gnutar gzip ]; + let path = with pkgs; makeSearchPath "bin" [ nix gitMinimal gnutar gzip ]; in "PATH=${path}"; }; };