From b226ca096816cad2d4c7a3aba2df7e93c14ccd86 Mon Sep 17 00:00:00 2001 From: Ross Smyth Date: Tue, 18 Nov 2025 07:56:06 +0000 Subject: [PATCH] builders.foundation.basic: Add strings and numbers as valid types for vars (#54) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I forgor 💀 Reviewed-on: https://git.auxolotl.org/auxolotl/labs/pulls/54 Reviewed-by: vlinkz Co-authored-by: Ross Smyth Co-committed-by: Ross Smyth --- tidepool/src/lib/types.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tidepool/src/lib/types.nix b/tidepool/src/lib/types.nix index b827661..5ba7ff1 100644 --- a/tidepool/src/lib/types.nix +++ b/tidepool/src/lib/types.nix @@ -70,6 +70,8 @@ in # Any arbitrary Bash variable bashVar = (lib.types.one [ + lib.types.number + lib.types.bashString lib.types.bashList lib.types.bashMap ])