hackens-org-configurations/machines/hackens-org/orga/shell.nix
2024-01-12 16:19:31 +01:00

6 lines
128 B
Nix

{ pkgs ? import ../nix { } }:
pkgs.mkShell {
buildInputs = [
(import ./python.nix { inherit pkgs; debug = true; })
];
}