dotfiles/templates/python/shell.nix

6 lines
98 B
Nix
Raw Normal View History

2023-11-16 15:12:39 +01:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [ python3 poetry ];
}