From 708b0940d44511c974ab950b8657a3fa7c71322b Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Sun, 9 Mar 2025 17:54:24 -0500 Subject: [PATCH] Add nix-shell config --- .envrc | 1 + shell.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .envrc create mode 100644 shell.nix diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..9e94ced --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +let + pkgs = import {}; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + gdal + python3 + python311Packages.requests + ]; +}