flake.nix 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 = symlinkJoin {
  11. name = "zsh-config";
  12. paths = [ nix-zsh-completions ];
  13. nativeBuildInputs = [ makeWrapper ];
  14. postBuild = ''
  15. # # broken with newer nix
  16. # rm $out/share/zsh/site-functions/_nix
  17. cat <<EOF > $out/share/zsh/.zprofile
  18. emulate sh -c 'source /etc/profile'
  19. EOF
  20. cat <<EOF > $out/share/zsh/.zshenv
  21. unsetopt GLOBAL_RCS
  22. EOF
  23. cat <<EOF > $out/share/zsh/.zshrc
  24. source $out/share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh
  25. fpath+=($out/share/zsh/site-functions)
  26. autoload -U compinit && compinit
  27. source ${zsh-bd}/share/zsh-bd/bd.plugin.zsh
  28. source ${zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
  29. path+=(${lib.makeBinPath [ any-nix-shell ]})
  30. source ${./config/fzf/fzf.zsh}
  31. source ${./config/config.zsh}
  32. source ${./config/p10k.zsh}
  33. source ${./config/title.zsh}
  34. if [ -f "\$HOME/.zsh/local.zsh" ]; then
  35. source "\$HOME/.zsh/local.zsh"
  36. fi
  37. # must be last
  38. source ${zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  39. EOF
  40. '';
  41. };
  42. in
  43. writeScriptBin "zsh" ''
  44. #!/bin/sh
  45. export ZDOTDIR=${config}/share/zsh
  46. for zsh in $(which -a zsh); do
  47. if [ "$0" = "$zsh" ]; then
  48. continue
  49. fi
  50. exec "$zsh" "$@"
  51. done
  52. echo "Could not find system zsh"
  53. exit 1
  54. '';
  55. };
  56. }