hackens-org-configurations/hosts/org/orga/shell.nix
2023-03-08 00:48:11 +01:00

6 lines
128 B
Nix

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