hackens-orga/provisioning/shell.nix

7 lines
128 B
Nix
Raw Normal View History

2023-03-07 18:34:43 +01:00
{ pkgs ? import ../nix { } }:
pkgs.mkShell {
buildInputs = [
(import ./python.nix { inherit pkgs; debug = true; })
];
}