minyma/shell.nix
2023-10-15 22:55:45 -04:00

8 lines
96 B
Nix

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