From 87f9a3bc0d5f6c47c11551886960d2336e087f62 Mon Sep 17 00:00:00 2001 From: Peter Esselius Date: Thu, 23 Oct 2025 00:46:30 +0200 Subject: [PATCH] Allow using microvm.interfaces.*.type = "vmnet-shared" for addressable darwin networking --- nixos-modules/microvm/options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-modules/microvm/options.nix b/nixos-modules/microvm/options.nix index 51703802..3b546386 100644 --- a/nixos-modules/microvm/options.nix +++ b/nixos-modules/microvm/options.nix @@ -296,7 +296,7 @@ in type = with types; listOf (submodule { options = { type = mkOption { - type = enum [ "user" "tap" "macvtap" "bridge" ]; + type = enum [ "user" "tap" "macvtap" "bridge" "vmnet-shared" ]; description = '' Interface type '';