<!-- Feel free to remove paragraphs that don't apply to your bugreport. --> ### Describe the bug Splicing/antiquoting in paths results in a syntax error, whereas Nix permits templated paths. ### Code Snippet to reproduce ```nix let x = "abc"; in ./${x} ``` ### Expected behavior The nix file is valid and should successfully evaluate to something like `/home/np/abc`.