Set up python.

This commit is contained in:
Tom Alexander
2024-12-31 07:37:48 -05:00
parent d2f908005c
commit 77ae96ca7a
3 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
python3
poetry
pyright
isort
black
];
}