From 895b5d1add95546b8d73307b4ed83ab0b3997dd8 Mon Sep 17 00:00:00 2001 From: blake Date: Sat, 11 Oct 2025 14:25:45 -0500 Subject: [PATCH] 297 current 2025-10-11 13:48:37 25.05.20251006.20c4598 6.12.50 * --- modules/homelab/services/glance/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/homelab/services/glance/default.nix b/modules/homelab/services/glance/default.nix index 03a0c33..1c6ea4d 100644 --- a/modules/homelab/services/glance/default.nix +++ b/modules/homelab/services/glance/default.nix @@ -46,11 +46,11 @@ in }; link = lib.mkOption { type = lib.types.attrsOf (lib.types.submodule { - options.name = lib.mkOption { type = lib.types.str; }; - options.url = lib.mkOption { type = lib.types.str; }; - options.icon = lib.mkOption { type = lib.types.str; }; - options.allow-insecure = lib.mkOption { type = lib.types.str; default = false; }; - options.category = lib.mkOption { type = lib.types.str; }; + options.name = lib.mkOption { type = lib.types.nullOr lib.types.str; }; + options.url = lib.mkOption { type = lib.types.nullOr lib.types.str; }; + options.icon = lib.mkOption { type = lib.types.nullOr lib.types.str; }; + options.allow-insecure = lib.mkOption { type = lib.types.nullOr lib.types.str; default = false; }; + options.category = lib.mkOption { type = lib.types.nullOr lib.types.str; }; }); default = {}; description = "configure the service for use in ${service}";