mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
Previously path was concatenated using string interpolation. This commit
switches from string interpolation to path interpolation.
The problem is nix will copy the "${directory}" to a new store
object, meaning anything outside its root won't be available.
From the nix manual:
> A path in an interpolated expression is first copied into the Nix
> store, and the resulting string is the store path of the newly created
> store object.
https://nix.dev/manual/nix/2.28/language/string-interpolation#interpolated-expression
|
||
|---|---|---|
| .. | ||
| platforms | ||
| test-sources | ||
| default.nix | ||
| enable-except-in-tests.nix | ||
| extend.nix | ||
| extra-args.nix | ||
| extra-files.nix | ||
| failing-tests.nix | ||
| fetch-tests.nix | ||
| generated.nix | ||
| lib-tests.nix | ||
| lsp-servers.nix | ||
| main.nix | ||
| maintainers.nix | ||
| nixpkgs-mock.nix | ||
| nixpkgs-module.nix | ||
| no-flake.nix | ||
| plugins-by-name.nix | ||