mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 01:56:13 +01:00
4172b0f633
Signed-off-by: Magic_RB <magic_rb@redalder.org>
40 lines
884 B
Nix
40 lines
884 B
Nix
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.magic_rb.packageCollections."3dPrinting";
|
|
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
|
|
super-slicer
|
|
freecad
|
|
];
|
|
|
|
home.file.".local/share/OpenSCAD/libraries/BOSL2".source =
|
|
pkgs.fetchFromGitHub {
|
|
owner = "revarbat";
|
|
repo = "BOSL2";
|
|
rev = "85e6dcd4835d019c8b582c03cf6e41bf83199cd1";
|
|
sha256 = "sha256-fuOBp8231ODF4mRzilBfb/JePG+8ANdxkiHbA6a4wts=";
|
|
};
|
|
};
|
|
}
|