Program categories: graphics, media, office, utilities, web Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
696 B
Nix
27 lines
696 B
Nix
{ ... }:
|
|
|
|
{
|
|
flake.modules.nixos.programs-graphics = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
# Image Editing
|
|
gimp
|
|
inkscape
|
|
# CAD & 3D Modeling
|
|
plasticity
|
|
];
|
|
|
|
services.flatpak.packages = [
|
|
# Vector Graphics
|
|
"com.boxy_svg.BoxySVG"
|
|
# 3D Printing / Slicing
|
|
rec {
|
|
appId = "io.github.softfever.OrcaSlicer";
|
|
sha256 = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1";
|
|
bundle = "${pkgs.fetchurl {
|
|
url = "https://github.com/SoftFever/OrcaSlicer/releases/download/v2.3.0/OrcaSlicer-Linux-flatpak_V2.3.0_x86_64.flatpak";
|
|
inherit sha256;
|
|
}}";
|
|
}
|
|
];
|
|
};
|
|
}
|