dotfiles/nix/home-manager/modules/3d-printing.nix

26 lines
539 B
Nix
Raw Normal View History

{ 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
{
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
];
};
2021-02-26 10:24:58 +01:00
}