mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
56 lines
1.5 KiB
Nix
56 lines
1.5 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) concatStringsSep mkEnableOption mkIf mkOption types;
|
|
cfg = config.services.openarena;
|
|
in
|
|
{
|
|
options = {
|
|
services.openarena = {
|
|
enable = mkEnableOption "OpenArena game server";
|
|
package = lib.mkPackageOption pkgs "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`";
|
|
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 = "${cfg.package}/bin/oa_ded +set fs_basepath ${cfg.package}/share/openarena +set fs_homepath /var/lib/openarena ${concatStringsSep " " cfg.extraFlags}";
|
|
Restart = "on-failure";
|
|
|
|
# Hardening
|
|
CapabilityBoundingSet = "";
|
|
NoNewPrivileges = true;
|
|
PrivateDevices = true;
|
|
};
|
|
};
|
|
};
|
|
}
|