From 56622fa339118b89d14a86ea4d56d3d0f3b5b6ba Mon Sep 17 00:00:00 2001 From: Leonhard Markert Date: Mon, 16 Dec 2019 10:09:59 +0100 Subject: [PATCH] lorri: add git to daemon path Lorri's daemon invokes Nix which requires Git on its path. https://github.com/target/lorri/issues/255 --- nixos/modules/services/development/lorri.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/development/lorri.nix b/nixos/modules/services/development/lorri.nix index 68264ee869d..c843aa56d13 100644 --- a/nixos/modules/services/development/lorri.nix +++ b/nixos/modules/services/development/lorri.nix @@ -32,7 +32,7 @@ in { description = "Lorri Daemon"; requires = [ "lorri.socket" ]; after = [ "lorri.socket" ]; - path = with pkgs; [ config.nix.package gnutar gzip ]; + path = with pkgs; [ config.nix.package git gnutar gzip ]; serviceConfig = { ExecStart = "${pkgs.lorri}/bin/lorri daemon"; PrivateTmp = true;