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

13 lines
213 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; [
2024-01-25 17:00:44 +01:00
python3
python311Packages.pip
# (python311Full.withPackages(ps: with ps; [
# requests
# pygame
# shapely
# ]))
2023-11-05 11:40:44 +01:00
];
}