mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
vim: add option to specify pkgs.vim_configurable (#2307)
This commit is contained in:
@@ -124,6 +124,13 @@ in {
|
||||
description = "Resulting customized vim package";
|
||||
readOnly = true;
|
||||
};
|
||||
|
||||
packageConfigurable = mkOption {
|
||||
type = types.package;
|
||||
description = "Configurable vim package";
|
||||
default = pkgs.vim_configurable;
|
||||
defaultText = "pkgs.vim_configurable";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -135,7 +142,7 @@ in {
|
||||
${cfg.extraConfig}
|
||||
'';
|
||||
|
||||
vim = pkgs.vim_configurable.customize {
|
||||
vim = cfg.packageConfigurable.customize {
|
||||
name = "vim";
|
||||
vimrcConfig = {
|
||||
inherit customRC;
|
||||
|
||||
Reference in New Issue
Block a user