minyma/shell.nix

8 lines
96 B
Nix
Raw Permalink Normal View History

2023-10-15 22:02:44 +00:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
python311
];
}