add t14 sys platform

This commit is contained in:
Fabian Montero 2024-12-02 21:36:26 -06:00
parent b64c85e314
commit e6a8a66432
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
8 changed files with 260 additions and 2 deletions

View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
static = true;
packages = with pkgs; [
pipenv
(python310.withPackages (packages:
with packages; [
setuptools
]))
];
}