12 lines
308 B
Nix
12 lines
308 B
Nix
{ inputs, pkgs, home, ... }:
|
|
let
|
|
|
|
in {
|
|
# whole blender config including addons is too fat to include here
|
|
home.packages = with pkgs; [
|
|
blender
|
|
];
|
|
# 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
|
|
}
|