10 lines
169 B
Nix
10 lines
169 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./module.nix ];
|
|
services.satisfactory-server = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
launchOptions = "-multihome=0.0.0.0";
|
|
};
|
|
}
|