nix-samples/simple-shell/shell.nix

8 lines
71 B
Nix
Raw Permalink Normal View History

2024-03-17 17:33:12 +01:00
with
import <nixpkgs> {};
mkShell {
packages = [
cowsay
];
}