add(wivrn): added wivrn onto modules

This commit is contained in:
2025-11-12 20:51:27 +00:00
parent 06085c3d09
commit 642c89bb1c
5 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
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; [
wlx-overlay-s
];
};
# 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
}