nix-learn/nix-language/WorkedExamples/shellEnv.nix

10 lines
167 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let
message = "hello world";
in
pkgs.mkShellNoCC {
packages = with pkgs; [ cowsay ];
shellHook = ''
cowsay ${message}
'';
}