From 459baebbb81e2c0db9e362800b921df07be1433e Mon Sep 17 00:00:00 2001 From: damocles Date: Sat, 30 May 2026 16:50:09 +0200 Subject: [PATCH] matrix: flutterBuildFlags is a list, not a string (#634 followup of followup) --- nix/modules/hive-matrix.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nix/modules/hive-matrix.nix b/nix/modules/hive-matrix.nix index 85716052..dd125074 100644 --- a/nix/modules/hive-matrix.nix +++ b/nix/modules/hive-matrix.nix @@ -198,8 +198,10 @@ in # routing lands (#609 — `matrix.${hyperhiveDomain}`), drop # this override; upstream's `/` base-href is correct at the # root of a dedicated subdomain. - flutterBuildFlags = - (old.flutterBuildFlags or "") + " --base-href /matrix/"; + flutterBuildFlags = (old.flutterBuildFlags or [ ]) ++ [ + "--base-href" + "/matrix/" + ]; }); defaultText = lib.literalMD "`pkgs.fluffychat-web` rebuilt with `--base-href /matrix/` via `flutterBuildFlags`."; description = ''