From d8f3a480e0f1094d27f81fa324e07ee37091bf0319660db98c93ef4308fbd208 Mon Sep 17 00:00:00 2001 From: Michael Volz Date: Mon, 27 Jan 2025 17:42:34 +0100 Subject: [PATCH] Project: Create nix development shell and envrc file --- .envrc | 1 + shell.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .envrc create mode 100644 shell.nix diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..926a93b --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use_nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..959c65c --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs; [ + ruff + poetry + python312 + python312Packages.python-lsp-server + ]; +}