30 lines
354 B
Nix
30 lines
354 B
Nix
{ config, lib, pkgs, ... }:
|
|
with pkgs;
|
|
with lib;
|
|
{
|
|
config = mkIf config.gui.enable {
|
|
|
|
home.packages = [
|
|
|
|
pureref
|
|
valentina
|
|
gimp
|
|
inkscape
|
|
imagemagick
|
|
nsxiv
|
|
blender
|
|
lightburn
|
|
colorpicker
|
|
|
|
# CAD & 3D Plotting
|
|
openscad
|
|
fstl
|
|
legacy_2311.cura
|
|
|
|
qrencode
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|