nix-samples/simple-shell/shell.nix
2024-03-17 17:33:12 +01:00

8 lines
71 B
Nix

with
import <nixpkgs> {};
mkShell {
packages = [
cowsay
];
}