From d4ecdc0ecb373ab4f345d085d04accffc52c9030 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Sat, 21 Sep 2024 18:56:25 -0400 Subject: [PATCH] Small changes --- nixos/server/minecraft/servers/velocity.nix | 4 ++-- nixos/services/virtualisation.nix | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) 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; };