dotfiles/nix/home-manager/modules/3d-printing.nix
Magic_RB d3e46e5413
Complete module rework
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:36 +02:00

25 lines
525 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
];
};
}