flake.nix 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. description = "Zsh configuration";
  3. outputs = { self, nixpkgs }:
  4. {
  5. packages.x86_64-linux.default =
  6. with import nixpkgs {
  7. system = "x86_64-linux";
  8. };
  9. let
  10. config = runCommand "zsh-config" {
  11. nativeBuildInputs = [ makeWrapper ];
  12. } ''
  13. mkdir -p $out/share/zsh
  14. cat <<EOF > $out/share/zsh/.zprofile
  15. emulate sh -c 'source /etc/profile'
  16. EOF
  17. cat <<EOF > $out/share/zsh/.zshenv
  18. unsetopt GLOBAL_RCS
  19. EOF
  20. cat <<EOF > $out/share/zsh/.zshrc
  21. source ${nix-zsh-completions}/share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh
  22. fpath+=(${nix-zsh-completions}/share/zsh/site-functions)
  23. autoload -U compinit && compinit
  24. source ${zsh-bd}/share/zsh-bd/bd.plugin.zsh
  25. source ${zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
  26. path+=(${lib.makeBinPath [ any-nix-shell ]})
  27. source ${./config/fzf/fzf.zsh}
  28. source ${./config/config.zsh}
  29. source ${./config/p10k.zsh}
  30. source ${./config/title.zsh}
  31. if [ -f "\$HOME/.zsh/local.zsh" ]; then
  32. source "\$HOME/.zsh/local.zsh"
  33. fi
  34. # must be last
  35. source ${zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  36. EOF
  37. '';
  38. in
  39. writeScriptBin "zsh" ''
  40. #!/bin/sh
  41. export ZDOTDIR=${config}/share/zsh
  42. for zsh in $(which -a zsh); do
  43. if [ "$0" = "$zsh" ]; then
  44. continue
  45. fi
  46. exec "$zsh" "$@"
  47. done
  48. echo "Could not find system zsh"
  49. exit 1
  50. '';
  51. };
  52. }