mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
78 lines
2 KiB
Nix
78 lines
2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
let cfg = config.services.satisfactory-server;
|
|
|
|
in {
|
|
options.services.satisfactory-server = {
|
|
enable = mkEnableOption "Satisfactory Dedicated Server";
|
|
|
|
steamcmdPackage = mkOption {
|
|
type = types.package;
|
|
default = pkgs.steamcmd;
|
|
defaultText = "pkgs.steamcmd";
|
|
description = ''
|
|
The package implementing SteamCMD
|
|
'';
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
type = types.path;
|
|
description = "Directory to store game server";
|
|
default = "/var/lib/satisfactory";
|
|
};
|
|
|
|
launchOptions = mkOption {
|
|
type = types.str;
|
|
description = "Launch options to use.";
|
|
default = "";
|
|
};
|
|
|
|
openFirewall = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to open ports in the firewall for the server
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.satisfactory-server =
|
|
let
|
|
steamcmd = "${cfg.steamcmdPackage}/bin/steamcmd";
|
|
steam-run = "${pkgs.steam-run}/bin/steam-run";
|
|
in
|
|
{
|
|
description = "Satisfactory Dedicated Server";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
|
|
serviceConfig = {
|
|
TimeoutSec = "15min";
|
|
ExecStart =
|
|
"${steam-run} ${cfg.dataDir}/FactoryServer.sh ${cfg.launchOptions}";
|
|
Restart = "always";
|
|
User = "satisfactory";
|
|
WorkingDirectory = cfg.dataDir;
|
|
};
|
|
|
|
preStart = ''
|
|
${steamcmd} +force_install_dir "${cfg.dataDir}" +login anonymous +app_update 1690800 validate +quit
|
|
'';
|
|
};
|
|
|
|
users.users.satisfactory = {
|
|
description = "Satisfactory server service user";
|
|
home = cfg.dataDir;
|
|
createHome = true;
|
|
isSystemUser = true;
|
|
group = "satisfactory";
|
|
};
|
|
users.groups.satisfactory = { };
|
|
|
|
networking.firewall =
|
|
mkIf cfg.openFirewall { allowedUDPPorts = [ 15777 7777 15000 ]; };
|
|
};
|
|
}
|