diff --git a/homes/palo/packages/graphics.nix b/homes/palo/packages/graphics.nix
index 920a383..b4ae253 100644
--- a/homes/palo/packages/graphics.nix
+++ b/homes/palo/packages/graphics.nix
@@ -6,6 +6,22 @@
 }:
 with pkgs;
 with lib;
+let
+  use_override = false;
+  bambu-studio =
+    if use_override then
+      pkgs.bambu-studio.overrideAttrs (old: rec {
+        version = "01.10.02.76";
+        src = pkgs.fetchFromGitHub {
+          owner = "bambulab";
+          repo = "BambuStudio";
+          rev = "v${version}";
+          hash = "sha256-LvAi3I5lnnumhOUagyej28uVy0Lgd3e19HNQXOUWSvQ=";
+        };
+      })
+    else
+      pkgs.bambu-studio;
+in
 {
   config = mkIf config.gui.enable {
 
@@ -27,7 +43,8 @@ with lib;
       openscad
       fstl
 
-      # cura
+      orca-slicer
+      bambu-studio
 
       qrencode