diff --git a/wrappers/modules/output.nix b/wrappers/modules/output.nix index dd578e0d..27c2fe2c 100644 --- a/wrappers/modules/output.nix +++ b/wrappers/modules/output.nix @@ -4,28 +4,7 @@ lib, ... }: -with lib; let - pluginWithConfigType = types.submodule { - options = { - config = mkOption { - type = types.lines; - description = "vimscript for this plugin to be placed in init.vim"; - default = ""; - }; - - optional = - mkEnableOption "optional" - // { - description = "Don't load by default (load with :packadd)"; - }; - - plugin = mkOption { - type = types.package; - description = "vim plugin"; - }; - }; - }; -in { +with lib; { options = { viAlias = mkOption { type = types.bool;