nixos-config/modules/home/package/python.nix

10 lines
150 B
Nix
Raw Normal View History

2023-12-08 14:53:00 +01:00
{pkgs, ...}:
2023-11-05 17:56:55 +01:00
{
2023-12-08 14:53:00 +01:00
environment.systemPackages = with pkgs; [
(python311Full.withPackages(ps: with ps; [
pygame
2023-12-18 11:33:34 +01:00
shapely
2023-12-08 14:53:00 +01:00
]))
2023-11-05 11:40:44 +01:00
];
}