1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28:30 +02:00

lorri: make system environment attribute a list

It should be a list to allow inclusions of additional variables.
This commit is contained in:
Robert Helgesson 2020-05-24 12:19:39 +02:00
parent d99f54b51b
commit a0d9a58616
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -41,7 +41,7 @@ in {
Environment = let
path = with pkgs;
makeSearchPath "bin" [ nix gitMinimal gnutar gzip ];
in "PATH=${path}";
in [ "PATH=${path}" ];
};
};