From 434002683c7d2efdfc7cd25bf7c311efbf9d181e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 26 Nov 2025 20:50:53 +0100 Subject: [PATCH] treewide: remove remaining nginxQuic mentions --- .../services/web-servers/nginx/vhost-options.nix | 10 ++-------- nixos/tests/sing-box.nix | 1 - 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/web-servers/nginx/vhost-options.nix b/nixos/modules/services/web-servers/nginx/vhost-options.nix index 547a85f5f700..cc57325a1959 100644 --- a/nixos/modules/services/web-servers/nginx/vhost-options.nix +++ b/nixos/modules/services/web-servers/nginx/vhost-options.nix @@ -243,9 +243,7 @@ with lib; default = true; description = '' Whether to enable the HTTP/3 protocol. - This requires using `pkgs.nginxQuic` package - which can be achieved by setting `services.nginx.package = pkgs.nginxQuic;` - and activate the QUIC transport protocol + This requires activating the QUIC transport protocol `services.nginx.virtualHosts..quic = true;`. Note that HTTP/3 support is experimental and *not* yet recommended for production. Read more at @@ -258,9 +256,7 @@ with lib; default = false; description = '' Whether to enable the HTTP/0.9 protocol negotiation used in QUIC interoperability tests. - This requires using `pkgs.nginxQuic` package - which can be achieved by setting `services.nginx.package = pkgs.nginxQuic;` - and activate the QUIC transport protocol + This requires activating the QUIC transport protocol `services.nginx.virtualHosts..quic = true;`. Note that special application protocol support is experimental and *not* yet recommended for production. Read more at @@ -272,8 +268,6 @@ with lib; default = false; description = '' Whether to enable the QUIC transport protocol. - This requires using `pkgs.nginxQuic` package - which can be achieved by setting `services.nginx.package = pkgs.nginxQuic;`. Note that QUIC support is experimental and *not* yet recommended for production. Read more at diff --git a/nixos/tests/sing-box.nix b/nixos/tests/sing-box.nix index 239114924537..1ecac7fa9bb7 100644 --- a/nixos/tests/sing-box.nix +++ b/nixos/tests/sing-box.nix @@ -139,7 +139,6 @@ in services.nginx = { enable = true; - package = pkgs.nginxQuic; virtualHosts."${target_host}" = { onlySSL = true;