From a0d9a586164be36689c645fdb68a7beb62397094 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. --- 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 a200ea6c4..618369908 100644 --- a/modules/services/lorri.nix +++ b/modules/services/lorri.nix @@ -41,7 +41,7 @@ in { Environment = let path = with pkgs; makeSearchPath "bin" [ nix gitMinimal gnutar gzip ]; - in "PATH=${path}"; + in [ "PATH=${path}" ]; }; };