Project: Create nix development shell and envrc file

This commit is contained in:
Michael Volz 2025-01-27 17:42:34 +01:00
parent 8e9b157906
commit d8f3a480e0
2 changed files with 10 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use_nix

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
ruff
poetry
python312
python312Packages.python-lsp-server
];
}