[3d printing] Adds slicers, blender

This commit is contained in:
2025-09-16 20:59:28 -07:00
parent 3bb9ebf875
commit 5c7649d3df
6 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.flatpak.enable = true;
systemd.services.flatpak-repo = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.flatpak ];
script = ''
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
'';
};
}