From e7e5ea5cee6868b16f974abdf1b7bd0d7f4059f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B9=82=E0=B8=97=E0=B8=AA=E0=B8=BA=E0=B8=95=E0=B8=B1?= =?UTF-8?q?=E0=B8=A5?= Date: Sat, 22 Feb 2025 19:22:54 +0700 Subject: [PATCH] =?UTF-8?q?nixos/h2o:=20show=20package=20override=20that?= =?UTF-8?q?=20isn=E2=80=99t=20the=20default?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default was changed earlier this week --- nixos/modules/services/web-servers/h2o/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-servers/h2o/default.nix b/nixos/modules/services/web-servers/h2o/default.nix index 042fbea41be9..5470748911f8 100644 --- a/nixos/modules/services/web-servers/h2o/default.nix +++ b/nixos/modules/services/web-servers/h2o/default.nix @@ -100,7 +100,7 @@ in package = lib.mkPackageOption pkgs "h2o" { example = '' pkgs.h2o.override { - withMruby = true; + withMruby = false; }; ''; };