From 92c623a436604b548b295536ba8888dd5e184a84 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 9 Feb 2024 21:20:07 +0100 Subject: [PATCH] wrappers/modules: remove unused pluginWithConfigType --- wrappers/modules/output.nix | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) 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;