Skip to content

Instantly share code, notes, and snippets.

@infinisil
Created September 29, 2017 18:20
Show Gist options
  • Save infinisil/945fbc530de95096d69a7d47cfa585a8 to your computer and use it in GitHub Desktop.
Save infinisil/945fbc530de95096d69a7d47cfa585a8 to your computer and use it in GitHub Desktop.
oh-my-zsh = {
enable = true;
custom = pkgs.fetchFromGitHub rec {
owner = "bhilburn";
repo = "powerlevel9k";
rev = "v0.6.3";
sha256 = "026j7ryzmrqhjd72b0axiz9bi63bfbzl378f9fn7y5g9bdy641qk";
extraPostFetch = ''
tmp=$(mktemp -d)
mv $out/* $tmp
mkdir $out/${repo}
mv $tmp/* $out/${repo}
'';
};
theme = "powerlevel9k/powerlevel9k";
plugins = [ "git" "pass" "brew" "colored-man" "colorize" ];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment