Add orca slicer

This commit is contained in:
DashieTM 2025-03-27 14:38:55 +01:00
parent 41b539eea8
commit 867e56cdf1

View file

@ -59,6 +59,12 @@ in {
type = lib.types.bool; type = lib.types.bool;
description = "Adds the ncspot spotify client"; description = "Adds the ncspot spotify client";
}; };
orcaSlicer = lib.mkOption {
default = false;
example = true;
type = lib.types.bool;
description = "Enables orca slicer";
};
nextcloudClient = lib.mkOption { nextcloudClient = lib.mkOption {
default = false; default = false;
example = true; example = true;
@ -96,6 +102,7 @@ in {
with pkgs; with pkgs;
[ [
(lib.mkIf config.mods.homePackages.ncspot ncspot) (lib.mkIf config.mods.homePackages.ncspot ncspot)
(lib.mkIf config.mods.homePackages.orcaSlicer orca-slicer)
(lib.mkIf config.mods.homePackages.vesktop fixedVesktop) (lib.mkIf config.mods.homePackages.vesktop fixedVesktop)
(lib.mkIf config.mods.homePackages.nextcloudClient nextcloud-client) (lib.mkIf config.mods.homePackages.nextcloudClient nextcloud-client)
(lib.mkIf (!isNull config.mods.homePackages.matrixClient) config.mods.homePackages.matrixClient) (lib.mkIf (!isNull config.mods.homePackages.matrixClient) config.mods.homePackages.matrixClient)