Added: Bunch of Programs

This commit is contained in:
2025-03-27 14:59:12 +01:00
parent 8415352b65
commit 53065b1bd1
246 changed files with 318 additions and 94 deletions

View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
# Install Blender
home.packages = with pkgs; [
blender
];
# Optional: Install specific versions of Blender (e.g., LTS)
# home.packages = with pkgs; [
# blender-bin # Latest stable release
# blender-lts
# ];
# Optional: Install Blender plugins
# home.packages = with pkgs; [
# blender
# blender-addons.io-scene-gltf2 # Example GLTF exporter/importer
# # Add other Blender addons here
# ];
}