dotfiles/provision/modules/devel/engineering.nix

17 lines
338 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; [
super-slicer
blender
];
2023-07-10 17:52:34 -07:00
};
}