2022-07-31 11:03:59 +02:00
|
|
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
2021-02-26 10:24:58 +01:00
|
|
|
{
|
2022-07-31 11:03:59 +02:00
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.magic_rb.packageCollections."3dPrinting";
|
|
|
|
in {
|
2021-04-11 00:25:36 +02:00
|
|
|
options.magic_rb.packageCollections."3dPrinting" = {
|
2022-07-31 11:03:59 +02:00
|
|
|
enable =
|
|
|
|
mkEnableOption
|
2021-04-11 00:25:36 +02:00
|
|
|
''
|
|
|
|
Enable 3D printing package collection, contains Prusa Slicer,
|
|
|
|
Cura, OpenSCAD, and inkscape."
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
openscad
|
|
|
|
cura
|
|
|
|
inkscape
|
2022-09-26 18:43:01 +02:00
|
|
|
super-slicer
|
2021-09-03 00:42:16 +02:00
|
|
|
freecad
|
2021-04-11 00:25:36 +02:00
|
|
|
];
|
2022-08-28 13:38:50 +02:00
|
|
|
|
|
|
|
home.file.".local/share/OpenSCAD/libraries/BOSL2".source =
|
|
|
|
pkgs.fetchFromGitHub {
|
|
|
|
owner = "revarbat";
|
|
|
|
repo = "BOSL2";
|
|
|
|
rev = "85e6dcd4835d019c8b582c03cf6e41bf83199cd1";
|
|
|
|
sha256 = "sha256-fuOBp8231ODF4mRzilBfb/JePG+8ANdxkiHbA6a4wts=";
|
|
|
|
};
|
2021-04-11 00:25:36 +02:00
|
|
|
};
|
2021-02-26 10:24:58 +01:00
|
|
|
}
|