mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
18 lines
312 B
Nix
18 lines
312 B
Nix
{pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
(python311Full.withPackages(ps: with ps; [
|
|
requests
|
|
pygame
|
|
shapely
|
|
|
|
# github-email-explorer
|
|
# jinja2
|
|
# markupsafe
|
|
# python-http-client
|
|
requests
|
|
# sendgrid
|
|
# tabulate
|
|
]))
|
|
];
|
|
}
|