Add nix-shell config

This commit is contained in:
Chandler Swift 2025-03-09 17:54:24 -05:00
parent 3ce578cd86
commit 708b0940d4
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
2 changed files with 12 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShellNoCC {
packages = with pkgs; [
gdal
python3
python311Packages.requests
];
}