mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
18 lines
352 B
Nix
18 lines
352 B
Nix
# CAD and 3d printing and everything nice
|
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
let
|
|
cfg = config.modules.devel.engineering;
|
|
in {
|
|
options.modules.devel.engineering.enable = lib.mkEnableOption "engineering";
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
super-slicer
|
|
freecad
|
|
blender
|
|
];
|
|
};
|
|
}
|