mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
parent
bce63e4dff
commit
42ad0effdd
1 changed files with 5 additions and 1 deletions
|
@ -302,7 +302,7 @@ in
|
||||||
(mkIf cfg.oh-my-zsh.enable {
|
(mkIf cfg.oh-my-zsh.enable {
|
||||||
home.file."${relToDotDir ".zshenv"}".text = ''
|
home.file."${relToDotDir ".zshenv"}".text = ''
|
||||||
ZSH="${pkgs.oh-my-zsh}/share/oh-my-zsh";
|
ZSH="${pkgs.oh-my-zsh}/share/oh-my-zsh";
|
||||||
ZSH_CACHE_DIR="''${XDG_CACHE_HOME:-''$HOME/.cache}/oh-my-zsh";
|
ZSH_CACHE_DIR="${config.xdg.cacheHome}/oh-my-zsh";
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -400,6 +400,10 @@ in
|
||||||
# calling it twice causes sight start up slowdown
|
# calling it twice causes sight start up slowdown
|
||||||
# as all $fpath entries will be traversed again.
|
# as all $fpath entries will be traversed again.
|
||||||
programs.zsh.enableCompletion = mkForce false;
|
programs.zsh.enableCompletion = mkForce false;
|
||||||
|
|
||||||
|
# Make sure we create a cache directory since some plugins expect it to exist
|
||||||
|
# See: https://github.com/rycee/home-manager/issues/761
|
||||||
|
home.file."${config.xdg.cacheHome}/oh-my-zsh/.keep".text = "";
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf (cfg.plugins != []) {
|
(mkIf (cfg.plugins != []) {
|
||||||
|
|
Loading…
Reference in a new issue