From b49ababba049bd98a660ef692fdac7efbe464c11 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 24 May 2020 12:19:39 +0200 Subject: [PATCH] lorri: make system environment attribute a list It should be a list to allow inclusions of additional variables. (cherry picked from commit a0d9a586164be36689c645fdb68a7beb62397094) --- 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 3b2c244e..a44ddabf 100644 --- a/modules/services/lorri.nix +++ b/modules/services/lorri.nix @@ -32,7 +32,7 @@ in { Environment = let path = with pkgs; makeSearchPath "bin" [ nix gitMinimal gnutar gzip ]; - in "PATH=${path}"; + in [ "PATH=${path}" ]; }; };