From 5b8c4fc50997ab47e5dbd60fb6d8589fd3d50d29 Mon Sep 17 00:00:00 2001 From: dish Date: Wed, 1 Apr 2026 14:07:32 -0400 Subject: [PATCH] nixos/wivrn: Fix module option being removed without new error --- nixos/modules/services/video/wivrn.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/services/video/wivrn.nix b/nixos/modules/services/video/wivrn.nix index 522a2dc174ea..0515d93d71cb 100644 --- a/nixos/modules/services/video/wivrn.nix +++ b/nixos/modules/services/video/wivrn.nix @@ -72,6 +72,11 @@ let ); in { + imports = [ + (lib.mkRemovedOptionModule [ "services" "wivrn" "defaultRuntime" ] '' + WiVRn now manages the active runtime itself, so this option has been removed. + '') + ]; options = { services.wivrn = { enable = mkEnableOption "WiVRn, an OpenXR streaming application";