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 { moduleConfig = evalModules {
specialArgs = specialArgs // {inherit pkgs;}; specialArgs = specialArgs // {inherit pkgs;};
modules = modules ++ [sLib.defaultModule]; modules = modules ++ [sLib.defaultModule];
class = "sloth";
}; };
in in
moduleConfig.config; moduleConfig.config;

View File

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

View File

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

View File

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