flake.nix 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. fpath+=(~/.nix-profile/share/zsh/site-functions)
  24. autoload -U compinit && compinit
  25. source ${zsh-bd}/share/zsh-bd/bd.plugin.zsh
  26. source ${zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
  27. path+=(${lib.makeBinPath [ any-nix-shell ]})
  28. source ${./config/fzf/fzf.zsh}
  29. source ${./config/config.zsh}
  30. source ${./config/p10k.zsh}
  31. source ${./config/title.zsh}
  32. if [ -f "\$HOME/.zsh/local.zsh" ]; then
  33. source "\$HOME/.zsh/local.zsh"
  34. fi
  35. # must be last
  36. source ${zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  37. EOF
  38. '';
  39. in
  40. writeScriptBin "zsh" ''
  41. #!/bin/sh
  42. export ZDOTDIR=${config}/share/zsh
  43. for zsh in $(which -a zsh); do
  44. if [ "$0" = "$zsh" ]; then
  45. continue
  46. fi
  47. exec "$zsh" "$@"
  48. done
  49. echo "Could not find system zsh"
  50. exit 1
  51. '';
  52. };
  53. }