home-manager: remove escaping
The Nix code that was extracted to its own file erroneously included escaping of "${".
This commit is contained in:
parent
e9ca4305a6
commit
5eff7f38df
|
@ -6,7 +6,7 @@ let
|
||||||
let
|
let
|
||||||
conf = import confPath;
|
conf = import confPath;
|
||||||
in
|
in
|
||||||
if confAttr == "" then conf else conf.''${confAttr};
|
if confAttr == "" then conf else conf.${confAttr};
|
||||||
pkgs = pkgs;
|
pkgs = pkgs;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue