minyma/shell.nix
2023-10-15 21:50:51 -04:00

8 lines
96 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
python311
];
}