diff --git a/nixos/server/minecraft/servers/velocity.nix b/nixos/server/minecraft/servers/velocity.nix index ee86d80..6db38c2 100644 --- a/nixos/server/minecraft/servers/velocity.nix +++ b/nixos/server/minecraft/servers/velocity.nix @@ -40,10 +40,10 @@ in { # Open ports for proxy networking.firewall = { allowedTCPPorts = [ - 25565 19132 5657 # Minecraft server info + 25565 19132 30013 5657 # Minecraft server info ]; allowedUDPPorts = [ - 25565 19132 # Minecraft server, VC, and Bedrock + 25565 19132 30013 # Minecraft server, VC, and Bedrock ]; }; } diff --git a/nixos/services/virtualisation.nix b/nixos/services/virtualisation.nix index b3b7a48..ee357c6 100644 --- a/nixos/services/virtualisation.nix +++ b/nixos/services/virtualisation.nix @@ -12,7 +12,10 @@ qemu = { ovmf = { enable = true; - packages = [pkgs.OVMFFull.fd]; + packages = [ + pkgs.OVMFFull.fd + pkgs.pkgsCross.aarch64-multiplatform.OVMF.fd + ]; }; swtpm.enable = true; };