flake: add an empty nixvimConfiguration to the legacyPackages output

This commit is contained in:
Matt Sturgeon 2024-09-15 18:02:54 +01:00
parent ccc2469e4f
commit fcb782cd9c
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
4 changed files with 20 additions and 17 deletions

View file

@ -1,12 +1,12 @@
{
lib,
evaluatedNixvim,
nixvimConfiguration,
linkFarmFromDrvs,
runCommandNoCCLocal,
}:
let
by-name = ../plugins/by-name;
options = lib.collect lib.isOption evaluatedNixvim.options;
options = lib.collect lib.isOption nixvimConfiguration.options;
# Option namespaces that we allow by-name plugins to declare
knownPluginNamespaces = [
@ -137,7 +137,7 @@ linkFarmFromDrvs "plugins-by-name" [
];
passthru = {
inherit evaluatedNixvim;
inherit nixvimConfiguration;
};
}
''
@ -172,7 +172,7 @@ linkFarmFromDrvs "plugins-by-name" [
];
passthru = {
inherit evaluatedNixvim;
inherit nixvimConfiguration;
};
}
''