7 lines
138 B
Nix
7 lines
138 B
Nix
|
|
{pkgs, ...}: {
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
temurin-jre-bin-17
|
||
|
|
];
|
||
|
|
networking.firewall.allowedTCPPorts = [25565];
|
||
|
|
}
|