clean(wivrn)

This commit is contained in:
2025-11-12 21:07:02 +00:00
parent 803c905462
commit 02f5e4b953

View File

@@ -40,15 +40,20 @@ in
options.modules.wivrn = { options.modules.wivrn = {
enable = lib.mkEnableOption "Wivrn configuration module"; enable = lib.mkEnableOption "Wivrn configuration module";
}; };
# whole blender config including addons is too fat to include here
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.wivrn = { services = {
wivrn = {
enable = true; enable = true;
package = wivrn_override; package = wivrn_override;
openFirewall = true; openFirewall = true;
defaultRuntime = true; defaultRuntime = true;
}; };
avahi = {
enable = true;
publish.enable = true;
publish.userServices = true;
};
};
programs.adb.enable = true;
}; };
# 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
} }