We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d25949a commit f668622Copy full SHA for f668622
nixos-modules/microvm/options.nix
@@ -257,15 +257,13 @@ in
257
'';
258
};
259
macvtap.link = mkOption {
260
- type = nullOr str;
261
- default = null;
+ type = str;
262
description = ''
263
Attach network interface to host interface for type = "macvlan"
264
265
266
macvtap.mode = mkOption {
267
- type = nullOr (enum ["private" "vepa" "bridge" "passthru" "source"]);
268
+ type = enum ["private" "vepa" "bridge" "passthru" "source"];
269
270
The MACVLAN mode to use
271
0 commit comments