1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

home-manager: remove escaping

The Nix code that was extracted to its own file erroneously included
escaping of "${".

(cherry picked from commit 5eff7f38df)
This commit is contained in:
Nikita Uvarov 2017-08-28 15:23:45 +02:00 committed by Robert Helgesson
parent a3395bc3a4
commit 7ad849f033
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -6,7 +6,7 @@ let
let
conf = import confPath;
in
if confAttr == "" then conf else conf.''${confAttr};
if confAttr == "" then conf else conf.${confAttr};
pkgs = pkgs;
};
in