aboutsummaryrefslogtreecommitdiff
path: root/modules/games/satisfactory.nix
blob: 6864256e55a2ce4afe814c9565ec4c052a1ca138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  config,
  lib,
  pkgs,
  ...
}:

{
  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 = { };
    };
  };
}