summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanne Heß <dasJ@users.noreply.github.com>2023-01-13 09:43:07 +0100
committerGitHub <noreply@github.com>2023-01-13 09:43:07 +0100
commitea98d035977c05da0da980cf1598c9fa644842ee (patch)
tree2899fd4d964c04c8aa534cf600f96fc95ef7c24e
parent1b0941f6462cbffd045afcaebf0b2cb1926224c4 (diff)
parent418fda2293cd70c343a0299c5cca39b61e3fb4cc (diff)
Merge pull request #209755 from ivanbrennan/fix-neovim-runtime
nixos.programs.neovim: fix runtime
-rw-r--r--nixos/modules/programs/neovim.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/neovim.nix b/nixos/modules/programs/neovim.nix
index 8de527fceb26..4562e5a2c29b 100644
--- a/nixos/modules/programs/neovim.nix
+++ b/nixos/modules/programs/neovim.nix
@@ -7,7 +7,7 @@ let
runtime' = filter (f: f.enable) (attrValues cfg.runtime);
- runtime = pkgs.linkFarm "neovim-runtime" (map (x: { name = x.target; path = x.source; }) runtime');
+ runtime = pkgs.linkFarm "neovim-runtime" (map (x: { name = "etc/${x.target}"; path = x.source; }) runtime');
in {
options.programs.neovim = {