with import {}; stdenv.mkDerivation { name = "my-environment"; buildInputs = [ pkgs.figlet pkgs.lolcat ]; # The '' quotes are 2 single quote characters # They are used for multi-line strings shellHook = '' figlet "Welcome!" | lolcat --freq 0.5 ''; }