the ugly shellscript powering https://oppi.li
at main 167 B view raw
1{ pkgs ? import <nixpkgs> {} }: 2 3with pkgs; 4mkShell { 5 buildInputs = [ miniserve ]; 6 shellHook = '' 7 source ~/.bash_prompt 8 export PS1="$PS1(site) " 9 ''; 10}