Add nix shell banner
Entering nix develop should print a welcome message similar to how https://github.com/yusdacra/rust-nix-templater does
If we can do this in a general way (abstracted way as an external repo to be used as a flake input, with minimal Nix stub) that would be ideal. cc @yusdacra
The devshell message there comes from https://github.com/numtide/devshell, which is a lightweight devshell with nice features. haskellPackages would need to use that for a devshell message. But haskell-template could probably just use devshell and set up a shellHook that sources the haskellPackages shell and add a commands using devshell configuration.
@yusdacra Oh, I hadn't realized it came from numtide/devshell. Thanks.
Also: https://github.com/numtide/devshell/pull/6#issuecomment-1129029017
Done in https://github.com/srid/haskell-template/pull/72