Add Orcaslicer

This commit is contained in:
Nathan McCarty 2023-08-04 04:16:19 -04:00
parent 0e4d46d025
commit a82dd9710b
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 29 additions and 14 deletions

View File

@ -2,19 +2,34 @@
let unstable = inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}"; let unstable = inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}";
in { in {
config = lib.mkIf config.nathan.programs.image-editing { config = lib.mkIf config.nathan.programs.image-editing {
home.packages = with pkgs; [ home.packages = with pkgs;
# RawTherapee for raw editing let
unstable.rawtherapee orcaAppimage = pkgs.fetchzip {
# Gimp for complex editing url =
gimp-with-plugins "https://github.com/SoftFever/OrcaSlicer/releases/download/v1.6.4-beta/OrcaSlicer_V1.6.4-beta_Linux.zip";
# Krita for drawing sha256 = "sha256-e9CbLBnWC2RuLM8CflKgA45svczS1yh8Mp6WUynS1BY=";
unstable.krita };
# Xournal for recording notes orcaSlicer = appimageTools.wrapType2 {
xournalpp name = "OrcaSlicer";
# Pinta for basic image editing src = "${orcaAppimage}/OrcaSlicer_ubu64.AppImage";
unstable.pinta extraPkgs = pkgs: with pkgs; [ webkitgtk ];
# Command line tools for image conversion and handling };
imagemagickBig in [
]; # RawTherapee for raw editing
unstable.rawtherapee
# Gimp for complex editing
gimp-with-plugins
# Krita for drawing
unstable.krita
# Xournal for recording notes
xournalpp
# Pinta for basic image editing
unstable.pinta
# Command line tools for image conversion and handling
imagemagickBig
## 3d printing
# Orca Slicer
orcaSlicer
];
}; };
} }