VReader/shell.nix

8 lines
96 B
Nix
Raw Normal View History

2023-11-11 02:09:31 +00:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
python311
];
}