Skip to content

Instantly share code, notes, and snippets.

@notgne2
Created August 27, 2020 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notgne2/e318da75d63505a0b8b6a759d15a1a93 to your computer and use it in GitHub Desktop.
Save notgne2/e318da75d63505a0b8b6a759d15a1a93 to your computer and use it in GitHub Desktop.
{
programs.fish = {
enable = true;
interactiveShellInit =
let
shellderSrc = pkgs.fetchurl {
url =
"https://github.com/oh-my-fish/theme-agnoster/raw/master/fish_prompt.fish";
sha256 = "1d8dmqb757fi1crhwriq9vl77yg079zdjs53r2naiym02wdhkl4a";
};
in
''
source ${shellderSrc}
echo 'all other stuff goes here too'
'';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment