mirror of
https://github.com/zoriya/abyss.git
synced 2025-12-06 06:36:16 +00:00
14 lines
200 B
Nix
14 lines
200 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
kicad
|
|
nodejs
|
|
freecad
|
|
blender
|
|
python3Packages.pip
|
|
# python312Packages.west
|
|
# cmake
|
|
# ninja
|
|
];
|
|
}
|