dotfiles/provision/modules/devel/engineering.nix

19 lines
583 B
Nix
Raw Normal View History

2023-07-10 17:52:34 -07:00
# CAD and 3d printing and everything nice
{ config, lib, pkgs, user, ... }:
2023-07-10 17:52:34 -07:00
let
cfg = config.modules.devel.engineering;
in {
options.modules.devel.engineering.enable = lib.mkEnableOption "engineering";
config = lib.mkIf cfg.enable {
2023-10-13 21:01:14 -07:00
environment.systemPackages = with pkgs; [
prusa-slicer # Slicing software optimized for Prusa 3D printers, offering user-friendly interface and settings.
freecad # Open-source parametric 3D CAD modeler.
blender # Open-source 3D creation suite for modeling, animation, rendering, and more.
2024-04-28 22:57:05 -07:00
openscad
2023-10-13 21:01:14 -07:00
];
2023-07-10 17:52:34 -07:00
};
}