Create a new home-manager role for 3D printing applications including orca-slicer for slicing and openscad-unstable for 3D modeling. Enable the role in the desktop configuration for full-featured experience.
22 lines
400 B
Nix
22 lines
400 B
Nix
{
|
|
# Shared roles that work across all platforms (Linux, Darwin, etc.)
|
|
# Platform-specific roles are imported via base-linux or base-darwin
|
|
# in each home configuration file
|
|
imports = [
|
|
./3d-printing
|
|
./base
|
|
./communication
|
|
./desktop
|
|
./development
|
|
./gaming
|
|
./kdeconnect
|
|
./kubectl
|
|
./launchers
|
|
./media
|
|
./office
|
|
./sync
|
|
./tmux
|
|
./emacs
|
|
];
|
|
}
|