nixos-config/modules/home/package/python.nix
2024-01-06 17:19:00 +01:00

11 lines
193 B
Nix

{pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(python311Full.withPackages(ps: with ps; [
requests
github-email-explorer
pygame
shapely
]))
];
}