openarena: add module for dedicated server
This commit is contained in:
parent
ccb101b9b7
commit
230fc22e61
@ -321,6 +321,7 @@
|
||||
./services/games/factorio.nix
|
||||
./services/games/minecraft-server.nix
|
||||
./services/games/minetest-server.nix
|
||||
./services/games/openarena.nix
|
||||
./services/games/terraria.nix
|
||||
./services/hardware/acpid.nix
|
||||
./services/hardware/actkbd.nix
|
||||
|
56
nixos/modules/services/games/openarena.nix
Normal file
56
nixos/modules/services/games/openarena.nix
Normal file
@ -0,0 +1,56 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.openarena;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
services.openarena = {
|
||||
enable = mkEnableOption "OpenArena";
|
||||
|
||||
openPorts = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "Whether to open firewall ports for OpenArena";
|
||||
};
|
||||
|
||||
extraFlags = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [];
|
||||
description = ''Extra flags to pass to <command>oa_ded</command>'';
|
||||
example = [
|
||||
"+set dedicated 2"
|
||||
"+set sv_hostname 'My NixOS OpenArena Server'"
|
||||
# Load a map. Mandatory for clients to be able to connect.
|
||||
"+map oa_dm1"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
networking.firewall = mkIf cfg.openPorts {
|
||||
allowedUDPPorts = [ 27960 ];
|
||||
};
|
||||
|
||||
systemd.services.openarena = {
|
||||
description = "OpenArena";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
DynamicUser = true;
|
||||
StateDirectory = "openarena";
|
||||
ExecStart = "${pkgs.openarena}/bin/openarena-server +set fs_basepath ${pkgs.openarena}/openarena-0.8.8 +set fs_homepath /var/lib/openarena ${concatStringsSep " " cfg.extraFlags}";
|
||||
Restart = "on-failure";
|
||||
|
||||
# Hardening
|
||||
CapabilityBoundingSet = "";
|
||||
NoNewPrivileges = true;
|
||||
PrivateDevices = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
@ -25,10 +25,16 @@ stdenv.mkDerivation {
|
||||
patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.x86_64"
|
||||
makeWrapper "${gameDir}/openarena.x86_64" "$out/bin/openarena" \
|
||||
--prefix LD_LIBRARY_PATH : "${libPath}"
|
||||
patchelf --set-interpreter "${interpreter}" "${gameDir}/oa_ded.x86_64"
|
||||
makeWrapper "${gameDir}/oa_ded.x86_64" "$out/bin/openarena-server" \
|
||||
--prefix LD_LIBRARY_PATH : "${libPath}"
|
||||
'' else ''
|
||||
patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.i386"
|
||||
makeWrapper "${gameDir}/openarena.i386" "$out/bin/openarena" \
|
||||
--prefix LD_LIBRARY_PATH : "${libPath}"
|
||||
patchelf --set-interpreter "${interpreter}" "${gameDir}/oa_ded.i386"
|
||||
makeWrapper "${gameDir}/oa_ded.i386" "$out/bin/openarena-server" \
|
||||
--prefix LD_LIBRARY_PATH : "${libPath}"
|
||||
''}
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user