From eb0c48b1e7bb8fc49c22f133db921f5ceebced2a Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Thu, 19 Mar 2026 21:44:00 +0100 Subject: [PATCH] programs: Add prusa-slicer --- modules/hosts/keith/users/weckyy702/weckyy702.nix | 1 + modules/programs/prusa-slicer.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 modules/programs/prusa-slicer.nix diff --git a/modules/hosts/keith/users/weckyy702/weckyy702.nix b/modules/hosts/keith/users/weckyy702/weckyy702.nix index 8878ab1..73c2b2d 100644 --- a/modules/hosts/keith/users/weckyy702/weckyy702.nix +++ b/modules/hosts/keith/users/weckyy702/weckyy702.nix @@ -20,6 +20,7 @@ borgmatic qbittorrent + prusa-slicer ]; }; }; diff --git a/modules/programs/prusa-slicer.nix b/modules/programs/prusa-slicer.nix new file mode 100644 index 0000000..c1ba792 --- /dev/null +++ b/modules/programs/prusa-slicer.nix @@ -0,0 +1,7 @@ +{ + flake.modules.homeManager.prusa-slicer = { pkgs, ... }: { + home.packages = with pkgs; [ + prusa-slicer + ]; + }; +}