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
commit ea98d03597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 = {