mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
zplug: add module
This adds initial support for the zsh package manager "zplug". PR #1105
This commit is contained in:
parent
bb567e20b3
commit
1b210e7143
5 changed files with 108 additions and 0 deletions
|
@ -119,6 +119,7 @@ let
|
||||||
(loadModule ./programs/z-lua.nix { })
|
(loadModule ./programs/z-lua.nix { })
|
||||||
(loadModule ./programs/zathura.nix { })
|
(loadModule ./programs/zathura.nix { })
|
||||||
(loadModule ./programs/zoxide.nix { })
|
(loadModule ./programs/zoxide.nix { })
|
||||||
|
(loadModule ./programs/zplug.nix { })
|
||||||
(loadModule ./programs/zsh.nix { })
|
(loadModule ./programs/zsh.nix { })
|
||||||
(loadModule ./services/blueman-applet.nix { })
|
(loadModule ./services/blueman-applet.nix { })
|
||||||
(loadModule ./services/cbatticon.nix { condition = hostPlatform.isLinux; })
|
(loadModule ./services/cbatticon.nix { condition = hostPlatform.isLinux; })
|
||||||
|
|
57
modules/programs/zplug.nix
Normal file
57
modules/programs/zplug.nix
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
cfg = config.programs.zsh.zplug;
|
||||||
|
|
||||||
|
pluginModule = types.submodule ({ config, ... }: {
|
||||||
|
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 = mkEnableOption "zplug - a zsh plugin manager";
|
||||||
|
|
||||||
|
plugins = mkOption {
|
||||||
|
default = [ ];
|
||||||
|
type = types.listOf pluginModule;
|
||||||
|
description = "List of zplug plugins.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home.packages = [ pkgs.zplug ];
|
||||||
|
|
||||||
|
programs.zsh.initExtraBeforeCompInit = ''
|
||||||
|
source ${pkgs.zplug}/init.zsh
|
||||||
|
|
||||||
|
${optionalString (cfg.plugins != [ ]) ''
|
||||||
|
${concatStrings (map (plugin: ''
|
||||||
|
zplug "${plugin.name}"${
|
||||||
|
optionalString (plugin.tags != [ ]) ''
|
||||||
|
${concatStrings (map (tag: ", ${tag}") plugin.tags)}
|
||||||
|
''
|
||||||
|
}
|
||||||
|
'') cfg.plugins)}
|
||||||
|
''}
|
||||||
|
|
||||||
|
zplug install
|
||||||
|
zplug load
|
||||||
|
'';
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
|
@ -62,6 +62,7 @@ import nmt {
|
||||||
./modules/programs/starship
|
./modules/programs/starship
|
||||||
./modules/programs/texlive
|
./modules/programs/texlive
|
||||||
./modules/programs/tmux
|
./modules/programs/tmux
|
||||||
|
./modules/programs/zplug
|
||||||
./modules/programs/zsh
|
./modules/programs/zsh
|
||||||
./modules/xresources
|
./modules/xresources
|
||||||
] ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
] ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
||||||
|
|
1
tests/modules/programs/zplug/default.nix
Normal file
1
tests/modules/programs/zplug/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ zplug-modules = ./modules.nix; }
|
48
tests/modules/programs/zplug/modules.nix
Normal file
48
tests/modules/programs/zplug/modules.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
zplug = {
|
||||||
|
enable = true;
|
||||||
|
plugins = [
|
||||||
|
{
|
||||||
|
name = "plugins/git";
|
||||||
|
tags = [ "from:oh-my-zsh" ];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "lib/clipboard";
|
||||||
|
tags = [ "from:oh-my-zsh" ''if:"[[ $OSTYPE == *darwin* ]]"'' ];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super: {
|
||||||
|
zsh = pkgs.writeScriptBin "dummy-zsh" "";
|
||||||
|
zplug = pkgs.writeScriptBin "dummy-zplug" "";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
assertFileRegex home-files/.zshrc \
|
||||||
|
'^source ${builtins.storeDir}/.*zplug.*/init\.zsh$'
|
||||||
|
|
||||||
|
assertFileContains home-files/.zshrc \
|
||||||
|
'zplug "plugins/git", from:oh-my-zsh'
|
||||||
|
|
||||||
|
assertFileContains home-files/.zshrc \
|
||||||
|
'zplug "lib/clipboard", from:oh-my-zsh, if:"[[ $OSTYPE == *darwin* ]]"'
|
||||||
|
|
||||||
|
assertFileRegex home-files/.zshrc \
|
||||||
|
'^zplug install$'
|
||||||
|
|
||||||
|
assertFileRegex home-files/.zshrc \
|
||||||
|
'^zplug load$'
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue