2021-04-11 00:25:36 +02:00
|
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.magic_rb.packageCollections."3dPrinting";
|
|
|
|
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
|
|
|
|
in
|
2021-02-26 10:24:58 +01:00
|
|
|
{
|
2021-04-11 00:25:36 +02:00
|
|
|
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
|
2021-09-03 00:42:16 +02:00
|
|
|
freecad
|
2021-04-11 00:25:36 +02:00
|
|
|
];
|
|
|
|
};
|
2021-02-26 10:24:58 +01:00
|
|
|
}
|