boilerplate: add shell.nix

This commit is contained in:
stupidcomputer 2024-07-30 18:32:13 -05:00
parent 0e68ee3cab
commit b09999458d
1 changed files with 4 additions and 0 deletions

4
shell.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.python311Packages; [ django ] ++ [ pkgs.docker-compose ] ;
}