chore: few clean before RC
parent
cf660fa367
commit
43d374b618
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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 = ''
|
||||||
|
|
|
||||||
|
|
@ -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"];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue