26 lines
517 B
Nix
26 lines
517 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
home,
|
|
system,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.modules.wivrn;
|
|
in
|
|
{
|
|
options.modules.wivrn = {
|
|
enable = lib.mkEnableOption "Blender configuration module";
|
|
};
|
|
# whole blender config including addons is too fat to include here
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
wayvr
|
|
];
|
|
};
|
|
# 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
|
|
}
|