add desktop platform

This commit is contained in:
Fabian Montero 2024-09-08 15:23:22 -06:00
parent a598918c63
commit 106bc1348d
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
26 changed files with 2602 additions and 13 deletions

View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
static = true;
packages = with pkgs; [
binutils
cmake
curl
gdb
gnumake
rustup
valgrind
];
}

View file

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