This commit is contained in:
Astro 2021-12-02 01:59:44 +01:00
commit 668639fac1
6 changed files with 162 additions and 0 deletions

27
flake.lock Normal file
View File

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1638379089,
"narHash": "sha256-i46UYx7K40zuwcBcp52HcWrAq6LxUcGlzwgPZlMvpW4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "19b97c86986e72e5728e14c08f8c942df21ba180",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "release-21.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

51
flake.nix Normal file
View File

@ -0,0 +1,51 @@
{
description = "Quake 3 Arena Dedicated Server";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
};
outputs = inputs@{ self, nixpkgs }: {
packages = builtins.mapAttrs (system: _:
let
inherit (self.nixosConfigurations) quakeserver;
remoteCommand = "ssh -Co ClearAllForwardings=yes sbz -- sudo lxc-attach -n quake-astro --";
in rec {
rootfs = quakeserver.config.system.build.toplevel;
container = quakeserver.config.system.build.tarball;
deploy = with nixpkgs.legacyPackages.${system};
writeScriptBin "deploy" ''
#! ${runtimeShell} -e
nix-store --export $(cat ${writeReferencesToFile rootfs}) | pv -brep | ${remoteCommand} /run/current-system/sw/bin/nix-store --import
${remoteCommand} ${rootfs}/bin/switch-to-configuration switch
'';
} //
import ./pkgs/baseq3.nix (inputs // { inherit system; })
) { x86_64-linux = true; };
nixosModules = {
container = import ./nixos-modules/container.nix;
quake3ded = import ./nixos-modules/quake3ded.nix;
};
nixosConfigurations.quakeserver = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
extraArgs = {
inherit self;
};
modules = [
"${nixpkgs}/nixos/modules/virtualisation/lxc-container.nix"
self.nixosModules.container
self.nixosModules.quake3ded
{
networking.hostName = "quakeserver";
}
];
};
};
}

View File

@ -0,0 +1,27 @@
{ pkgs, ... }:
{
# system
boot = {
isContainer = true;
tmpOnTmpfs = true;
};
nix = {
extraOptions = "experimental-features = nix-command flakes";
package = pkgs.nixUnstable;
};
system.stateVersion = "21.11";
# network
networking.useDHCP = false;
systemd.network.enable = false;
services.resolved.enable = false;
services.openssh = {
enable = false;
startWhenNeeded = false;
};
environment.noXlibs = false;
environment.systemPackages = with pkgs; [
git tcpdump
];
}

View File

@ -0,0 +1,10 @@
{ pkgs, self, ... }:
with pkgs;
{
services.quake3-server = {
enable = true;
openFirewall = true;
baseq3 = self.packages.${pkgs.system}.baseq3;
extraConfig = builtins.readFile ../q3config.cfg;
};
}

25
pkgs/baseq3.nix Normal file
View File

@ -0,0 +1,25 @@
{ self, nixpkgs, system }:
with (import nixpkgs {
inherit system;
config = { allowUnfree = true; };
});
rec {
q3iso = fetchurl {
url = "https://archive.org/download/quake-iii/Quake%20III.iso";
name = "QuakeIII.iso";
sha256 = "1qgk5kx7mf75dvlf54x15dpvjvwwh27q6m3cgg8gyiv57hw20cp9";
};
baseq3 = stdenv.mkDerivation {
name = "baseq3";
src = q3iso;
nativeBuildInputs = [ p7zip ];
unpackPhase = ''
7z x $src
'';
installPhase = ''
mkdir $out
cp -av baseq3/* $out/
cp -av ${quake3pointrelease}/baseq3/* $out/
'';
};
}

22
q3config.cfg Normal file
View File

@ -0,0 +1,22 @@
set g_password ""
rconpassword ""
sv_maxRate "25000"
sv_maxclients 32
sv_hostname "[SBZ] spaceboyz.net"
g_motd "Grrr!"
sets "Administrator" "Astro"
sets "Email" "astro@spaceboyz.net"
sets "URL" "https://spaceboyz.net"
sets "Location" "Valley of the clueless"
sets "CPU" "2010s"
//sets "mappack" "http://www.myserver.com/mappack.zip"
fraglimit 25
capturelimit 5
g_gametype 4
set m1 "capturelimit 8; map q3ctf1; set nextmap vstr m2"
set m2 "capturelimit 8; map q3ctf2 ; set nextmap vstr m3"
set m3 "capturelimit 8; map q3ctf3 ; set nextmap vstr m1"
vstr m1