Skip to content

Instantly share code, notes, and snippets.

@NWuensche
Created August 18, 2017 12:41
Show Gist options
  • Save NWuensche/3811996a53d42228243f571ee9ff3129 to your computer and use it in GitHub Desktop.
Save NWuensche/3811996a53d42228243f571ee9ff3129 to your computer and use it in GitHub Desktop.
...
environment.systemPackages = with pkgs; [
(pkgs.oh-my-zsh.overrideAttrs (oldAttrs: rec {
phases = "installPhase customThemePhase";
srcTheme = fetchurl {
url = "https://raw.githubusercontent.com/NWuensche/dotFiles/master/terminalStuff/agnoster.zsh-theme";
sha256 = "b99455c561bdcf9ec0601669da3d1aa680328ec1836430de22c6e7e32497ea5b";
};
customThemePhase = "sudo cp $srcTheme $outdir/themes/agnoster.zsh-theme";
}))
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment