From 7aae4b451ace154b6678efbc5c2a211bef6c2f45 Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Fri, 10 Apr 2026 19:31:45 +0200 Subject: [PATCH] feat(development): add mypy to default python packages --- nixos/modules/development.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/development.nix b/nixos/modules/development.nix index fdb78a6..e041461 100644 --- a/nixos/modules/development.nix +++ b/nixos/modules/development.nix @@ -15,7 +15,7 @@ languagePackages = { rust = with pkgs; [ rustup cargo-deny cargo-edit ]; - python = with pkgs; [ python3 python3Packages.pip python3Packages.virtualenv uv ]; + python = with pkgs; [ python3 python3Packages.pip python3Packages.virtualenv uv mypy ]; nodejs = with pkgs; [ nodejs pnpm ]; go = with pkgs; [ go golangci-lint ]; ruby = with pkgs; [ ruby bundler ];