lorri: add git to daemon path

Lorri's daemon invokes Nix which requires Git on its path.
https://github.com/target/lorri/issues/255
This commit is contained in:
Leonhard Markert 2019-12-16 10:09:59 +01:00 committed by GitHub
parent 01956b5605
commit 56622fa339
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;