{ config, lib, pkgs, ... }: { networking.firewall.allowedTCPPorts = [ 7777 ]; networking.firewall.allowedUDPPorts = [ 7777 ]; virtualisation.oci-containers.containers = { satisfactory = { image = "docker.io/wolveix/satisfactory-server:latest"; autoStart = true; volumes = [ "/var/lib/satisfactory:/config" ]; ports = [ "178.63.224.10:7777:7777/udp" "178.63.224.10:7777:7777/tcp" ]; environment = { }; }; }; }