Merge pull request #209755 from ivanbrennan/fix-neovim-runtime

nixos.programs.neovim: fix runtime
This commit is contained in:
Janne Heß
2023-01-13 09:43:07 +01:00
committed by GitHub
+1 -1
View File
@@ -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 = {