programs.neovim: fix tests + swap extraConfig and pluginconfig (#2053)
makes more sense to have extraConfig afterwards in case use want to override config
This commit is contained in:
parent
9e253a8c30
commit
2a4ab0d891
3 changed files with 5 additions and 5 deletions
|
|
@ -51,8 +51,8 @@ let
|
|||
(map (x: if x ? plugin && x.optional == true then x.plugin else null)
|
||||
cfg.plugins);
|
||||
};
|
||||
customRC = cfg.extraConfig
|
||||
+ pkgs.lib.concatMapStrings pluginConfig cfg.plugins;
|
||||
customRC = pkgs.lib.concatMapStrings pluginConfig cfg.plugins
|
||||
+ cfg.extraConfig;
|
||||
};
|
||||
|
||||
extraMakeWrapperArgs = lib.optionalString (cfg.extraPackages != [ ])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue