mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
15 lines
350 B
Nix
15 lines
350 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 {
|
|
|
|
# Install packages
|
|
environment.systemPackages = with pkgs; [ super-slicer freecad blender ];
|
|
};
|
|
}
|