15 lines
188 B
Nix
15 lines
188 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
# when it gets packaged, will want cadquery and build123d
|
|
home.packages = with pkgs; [
|
|
prusa-slicer
|
|
freecad
|
|
blender
|
|
dune3d
|
|
];
|
|
}
|