13 lines
206 B
Nix
13 lines
206 B
Nix
{lib, config, ...}:
|
|
|
|
with lib;
|
|
{
|
|
imports = [
|
|
(toString ../qemu-vm)
|
|
];
|
|
|
|
config = {
|
|
cascade.bridge-interface = mkForce null; # let it come up with its default interface with dhcp first
|
|
};
|
|
}
|