hackens-org-configurations/machines/hackens-org/orga/shell.nix

7 lines
128 B
Nix
Raw Normal View History

2023-03-08 00:48:11 +01:00
{ pkgs ? import ../nix { } }:
pkgs.mkShell {
buildInputs = [
(import ./python.nix { inherit pkgs; debug = true; })
];
}