treewide: implement auto importing for modules
Reduce maintenance burden and increase efficiency by automatically importing modules following a specific convention. Co-authored-by: awwpotato <awwpotato@voidq.com> Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
fefeb0e928
commit
4fca600cb1
461 changed files with 72 additions and 474 deletions
74
modules/programs/zplug/default.nix
Normal file
74
modules/programs/zplug/default.nix
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
{
|
||||
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
|
||||
'';
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue