Use flake-parts packages

This commit is contained in:
Martin Pander
2026-02-23 21:52:19 +01:00
parent 395a70b759
commit 1db0724fe0
3 changed files with 8 additions and 9 deletions

View File

@@ -35,9 +35,9 @@
devShells.default = pkgs.mkShell {
inputsFrom = [ self'.packages.default ];
packages = [
pkgs.ruff # Linter/Formatter
pkgs.pyright # Type checker (replaced 'ty')
packages = with pkgs; [
ruff # Linter/Formatter
ty # Type checker
];
shellHook = ''