|
@@ -8,50 +8,43 @@
|
|
|
system = "x86_64-linux";
|
|
|
};
|
|
|
let
|
|
|
- config = symlinkJoin {
|
|
|
- name = "zsh-config";
|
|
|
-
|
|
|
- paths = [ nix-zsh-completions ];
|
|
|
-
|
|
|
+ config = runCommand "zsh-config" {
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
+ } ''
|
|
|
+ mkdir -p $out/share/zsh
|
|
|
|
|
|
- postBuild = ''
|
|
|
- # # broken with newer nix
|
|
|
- # rm $out/share/zsh/site-functions/_nix
|
|
|
+ cat <<EOF > $out/share/zsh/.zprofile
|
|
|
+ emulate sh -c 'source /etc/profile'
|
|
|
+ EOF
|
|
|
|
|
|
- cat <<EOF > $out/share/zsh/.zprofile
|
|
|
- emulate sh -c 'source /etc/profile'
|
|
|
- EOF
|
|
|
+ cat <<EOF > $out/share/zsh/.zshenv
|
|
|
+ unsetopt GLOBAL_RCS
|
|
|
+ EOF
|
|
|
|
|
|
- cat <<EOF > $out/share/zsh/.zshenv
|
|
|
- unsetopt GLOBAL_RCS
|
|
|
- EOF
|
|
|
+ cat <<EOF > $out/share/zsh/.zshrc
|
|
|
+ source ${nix-zsh-completions}/share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh
|
|
|
+ fpath+=(${nix-zsh-completions}/share/zsh/site-functions)
|
|
|
|
|
|
- cat <<EOF > $out/share/zsh/.zshrc
|
|
|
- source $out/share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh
|
|
|
- fpath+=($out/share/zsh/site-functions)
|
|
|
+ autoload -U compinit && compinit
|
|
|
|
|
|
- autoload -U compinit && compinit
|
|
|
+ source ${zsh-bd}/share/zsh-bd/bd.plugin.zsh
|
|
|
+ source ${zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
|
|
|
|
|
|
- source ${zsh-bd}/share/zsh-bd/bd.plugin.zsh
|
|
|
- source ${zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
|
|
|
+ path+=(${lib.makeBinPath [ any-nix-shell ]})
|
|
|
|
|
|
- path+=(${lib.makeBinPath [ any-nix-shell ]})
|
|
|
+ source ${./config/fzf/fzf.zsh}
|
|
|
+ source ${./config/config.zsh}
|
|
|
+ source ${./config/p10k.zsh}
|
|
|
+ source ${./config/title.zsh}
|
|
|
|
|
|
- source ${./config/fzf/fzf.zsh}
|
|
|
- source ${./config/config.zsh}
|
|
|
- source ${./config/p10k.zsh}
|
|
|
- source ${./config/title.zsh}
|
|
|
-
|
|
|
- if [ -f "\$HOME/.zsh/local.zsh" ]; then
|
|
|
- source "\$HOME/.zsh/local.zsh"
|
|
|
- fi
|
|
|
+ if [ -f "\$HOME/.zsh/local.zsh" ]; then
|
|
|
+ source "\$HOME/.zsh/local.zsh"
|
|
|
+ fi
|
|
|
|
|
|
- # must be last
|
|
|
- source ${zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
- EOF
|
|
|
- '';
|
|
|
- };
|
|
|
+ # must be last
|
|
|
+ source ${zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
+ EOF
|
|
|
+ '';
|
|
|
in
|
|
|
writeScriptBin "zsh" ''
|
|
|
#!/bin/sh
|