services.quake3-server.extraConfig

NixOS option

Extra configuration lines appended after settings, for anything that isn’t a plain persisted cvar: map-rotation scripts, exec, vstr, aliases, or cvars that need set/sets/sett/setu instead of seta. Note that options changed via RCON will not be persisted. To list all possible options, use “cvarlist 1” via RCON.

type: strings concatenated with "\n"
Default
""
Example
''
  // map rotation and other things that don't map onto plain cvars
  set d1 "map q3dm1 ; set nextmap vstr d2"
  set d2 "map q3dm7 ; set nextmap vstr d1"
  vstr d1
  
  // rarely needed: cvars with a non-seta flag
  sets sv_privatePassword "hidden"
''
declared in: nixos/modules/services/games/quake3-server.nixView source on NixOS/nixpkgs →