Files
exo/nix/modules/python.nix
Evan Quiney 38ff949bf4 big refactor
Fix. Everything.

Co-authored-by: Andrei Cravtov <the.andrei.cravtov@gmail.com>
Co-authored-by: Matt Beton <matthew.beton@gmail.com>
Co-authored-by: Alex Cheema <alexcheema123@gmail.com>
Co-authored-by: Seth Howes <sethshowes@gmail.com>
2025-09-30 11:03:04 +01:00

21 lines
347 B
Nix

# Configures Python shell
{
perSystem =
{ pkgs, ... }:
{
make-shells.default = {
packages = [
pkgs.python313
pkgs.uv
pkgs.ruff
pkgs.basedpyright
];
shellHook = ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${pkgs.python313}/lib
'';
};
};
}