chore: few clean before RC

dev
LeMarsu 2026-03-11 22:26:47 +01:00
parent cf660fa367
commit 43d374b618
4 changed files with 3 additions and 6 deletions

View File

@ -13,6 +13,7 @@ in {
moduleConfig = evalModules {
specialArgs = specialArgs // {inherit pkgs;};
modules = modules ++ [sLib.defaultModule];
class = "sloth";
};
in
moduleConfig.config;

View File

@ -74,11 +74,6 @@ in {
options = {
package = mkPackageOption pkgs "neovim-unwrapped" {};
# Will probably be not needed
# dependenciesExtraArgs = mkOption {
# default = {};
# };
extraLuaPackages = mkOption {
description = ''
function to define extra lua packages that should be included in

View File

@ -85,7 +85,7 @@ in
};
plugin = mkOption {
# TODO Type should allow `basicPluginType`
# TODO Type should allow old `basicPluginType` ({name:<str>, src:<source>})?
type = with types; nullOr package;
default = null;
description = ''

View File

@ -28,6 +28,7 @@ in
package = mkOption {
type = types.package;
description = "The resulted runtime package";
readOnly = true;
default = self.mkPlugin config;
example.nvimRequireCheck = ["my-module.my-submodule"];
};