From 2579485aeb3ad235176cb9e6ed38ca63c090dad1 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 25 Mar 2025 04:56:38 +0530 Subject: [PATCH] feat: added orca slicer and vlc --- home/apps/bambu-studio.nix | 4 ++++ home/apps/default.nix | 1 + home/apps/vlc.nix | 5 +++++ 3 files changed, 10 insertions(+) create mode 100644 home/apps/vlc.nix diff --git a/home/apps/bambu-studio.nix b/home/apps/bambu-studio.nix index 539506b6..cb074b97 100644 --- a/home/apps/bambu-studio.nix +++ b/home/apps/bambu-studio.nix @@ -4,5 +4,9 @@ nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [pkgs.cudatoolkit]; buildInputs = oldAttrs.buildInputs ++ [pkgs.cudatoolkit]; })) + (orca-slicer.overrideAttrs (oldAttrs: { + nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [pkgs.cudatoolkit]; + buildInputs = oldAttrs.buildInputs ++ [pkgs.cudatoolkit]; + })) ]; } diff --git a/home/apps/default.nix b/home/apps/default.nix index 2fa00a9a..4f06330b 100644 --- a/home/apps/default.nix +++ b/home/apps/default.nix @@ -5,6 +5,7 @@ ./zed.nix ./obs-studio.nix ./zathura.nix + ./vlc.nix ]; # home.packages = []; } diff --git a/home/apps/vlc.nix b/home/apps/vlc.nix new file mode 100644 index 00000000..9355740d --- /dev/null +++ b/home/apps/vlc.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: { + home.packages = [ + pkgs.vlc + ]; +}