mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08: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:
committed by
Robert Helgesson
parent
a3395bc3a4
commit
7ad849f033
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user