
- set worker_processes / worker_cpu_affinity to auto, enable pcre_jit - enable ktls - set a default virtualHost for a 404 and use it for reuseport - set enableACME, forceSSL by default, disable for localhost - set robots header and file
22 lines
615 B
Nix
22 lines
615 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.self.nixosModules.nginx
|
|
inputs.srvos.nixosModules.hardware-hetzner-online-amd
|
|
inputs.self.nixosModules.disko-zfs
|
|
inputs.self.nixosModules.buildbot
|
|
inputs.self.nixosModules.builder
|
|
inputs.self.nixosModules.hercules-ci
|
|
inputs.self.nixosModules.watch-store
|
|
./builders.nix
|
|
|
|
inputs.self.nixosModules.github-org-backup
|
|
inputs.self.nixosModules.hydra
|
|
inputs.self.nixosModules.nur-update
|
|
./postgresql.nix
|
|
];
|
|
|
|
systemd.network.networks."10-uplink".networkConfig.Address = "2a01:4f8:2190:2698::2";
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|