12 lines
383 B
Nix
12 lines
383 B
Nix
{ inputs, pkgs, home, system, ... }:
|
|
let
|
|
blenderPkgs = inputs.nix-warez.packages.${system};
|
|
in {
|
|
# whole blender config including addons is too fat to include here
|
|
home.packages = with pkgs; [
|
|
blenderPkgs.blender_4_5
|
|
];
|
|
# nix'ing a blender config is most likely not possible
|
|
# could probs install blender addons through nix since they are fat fat mega fat to install TODO
|
|
}
|