Small changes

This commit is contained in:
Jimbo 2024-09-21 18:56:25 -04:00
parent 72431507c7
commit d4ecdc0ecb
2 changed files with 6 additions and 3 deletions

View file

@ -40,10 +40,10 @@ in {
# Open ports for proxy # Open ports for proxy
networking.firewall = { networking.firewall = {
allowedTCPPorts = [ allowedTCPPorts = [
25565 19132 5657 # Minecraft server info 25565 19132 30013 5657 # Minecraft server info
]; ];
allowedUDPPorts = [ allowedUDPPorts = [
25565 19132 # Minecraft server, VC, and Bedrock 25565 19132 30013 # Minecraft server, VC, and Bedrock
]; ];
}; };
} }

View file

@ -12,7 +12,10 @@
qemu = { qemu = {
ovmf = { ovmf = {
enable = true; enable = true;
packages = [pkgs.OVMFFull.fd]; packages = [
pkgs.OVMFFull.fd
pkgs.pkgsCross.aarch64-multiplatform.OVMF.fd
];
}; };
swtpm.enable = true; swtpm.enable = true;
}; };