From f042ecc70fe65eb914cec141ac4e97e7fb701741 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 4 Feb 2024 20:48:28 +0100 Subject: [PATCH] Add 3d printing tools --- home/adalbert.nix | 1 + home/features/desktop/common/3d-printing.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 home/features/desktop/common/3d-printing.nix diff --git a/home/adalbert.nix b/home/adalbert.nix index 0f8fdea..c3f6b5f 100644 --- a/home/adalbert.nix +++ b/home/adalbert.nix @@ -9,6 +9,7 @@ in { ./features/desktop/awesome ./features/games ./features/coding + ./features/desktop/common/3d-printing.nix inputs.nix-colors.homeManagerModules.default ]; diff --git a/home/features/desktop/common/3d-printing.nix b/home/features/desktop/common/3d-printing.nix new file mode 100644 index 0000000..359bb49 --- /dev/null +++ b/home/features/desktop/common/3d-printing.nix @@ -0,0 +1,3 @@ +{pkgs, ...}: { + home.packages = with pkgs; [freecad cura super-slicer]; +}