1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-06-03 02:26:45 +02:00
home-manager/modules/programs/zplug.nix
2025-05-07 10:03:21 -05:00

74 lines
1.5 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkOption optionalString types;
cfg = config.programs.zsh.zplug;
pluginModule = types.submodule {
options = {
name = mkOption {
type = types.str;
description = "The name of the plugin.";
};
tags = mkOption {
type = types.listOf types.str;
default = [ ];
description = "The plugin tags.";
};
};
};
in
{
options.programs.zsh.zplug = {
enable = lib.mkEnableOption "zplug - a zsh plugin manager";
plugins = mkOption {
default = [ ];
type = types.listOf pluginModule;
description = "List of zplug plugins.";
};
zplugHome = mkOption {
type = types.path;
default = "${config.home.homeDirectory}/.zplug";
defaultText = "~/.zplug";
apply = toString;
description = "Path to zplug home directory.";
};
};
config = lib.mkIf cfg.enable {
home.packages = [ pkgs.zplug ];
programs.zsh.initContent = lib.mkOrder 550 ''
export ZPLUG_HOME=${cfg.zplugHome}
source ${pkgs.zplug}/share/zplug/init.zsh
${optionalString (cfg.plugins != [ ]) ''
${lib.concatStrings (
map (plugin: ''
zplug "${plugin.name}"${
optionalString (plugin.tags != [ ]) ''
${lib.concatStrings (map (tag: ", ${tag}") plugin.tags)}
''
}
'') cfg.plugins
)}
''}
if ! zplug check; then
zplug install
fi
zplug load
'';
};
}