18 lines
451 B
Nix
18 lines
451 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
microvm.autostart = [
|
|
"palworld-server"
|
|
];
|
|
|
|
microvm = {
|
|
interfaces = [
|
|
{ type = "user"; id = "main-net"; }
|
|
{ type = "macvtap"; id = "vm-palworld"; }
|
|
];
|
|
|
|
# Interface Name on the Host
|
|
# Ethernet Address of MicroVM's interface.
|
|
# Locally administered have one of 2/6/A/E in the second nibble.
|
|
#interfaces = [{type = "tap";id = "vm-palworld";mac = "02:00:00:00:00:01";}];
|
|
};
|
|
}
|