dotfiles/nix/home-manager/modules/3d-printing.nix
Magic_RB f3f665ddb7
Add FreeCAD to 3D Printing package set
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-09-03 00:42:16 +02:00

26 lines
539 B
Nix

{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.magic_rb.packageCollections."3dPrinting";
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
in
{
options.magic_rb.packageCollections."3dPrinting" = {
enable = mkEnableOption
''
Enable 3D printing package collection, contains Prusa Slicer,
Cura, OpenSCAD, and inkscape."
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
openscad
cura
inkscape
nixpkgs-unstable.prusa-slicer
freecad
];
};
}