nix-book/source/shell-recipes/0100-shell-with-nixpkgs.nix
Amy de Buitléir 78fd4cc737 initial commit
2023-06-11 20:42:36 +01:00

7 lines
84 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
hello
cowsay
];
}