nix-config/roles/home-manager/3dprinting.nix

15 lines
188 B
Nix
Raw Normal View History

2024-05-17 14:38:46 -05:00
{
config,
pkgs,
lib,
...
}: {
2024-05-22 13:52:00 -05:00
# when it gets packaged, will want cadquery and build123d
2024-05-17 14:38:46 -05:00
home.packages = with pkgs; [
prusa-slicer
freecad
blender
dune3d
];
}