From f2df5948c8c702f49a87b1210870b667f125f903 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Fri, 9 Aug 2024 15:11:07 +0300 Subject: [PATCH] add meta to all fields --- sp-modules/gitea/module.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sp-modules/gitea/module.nix b/sp-modules/gitea/module.nix index ca4e11a..69d2819 100644 --- a/sp-modules/gitea/module.nix +++ b/sp-modules/gitea/module.nix @@ -13,10 +13,21 @@ in default = false; type = lib.types.bool; description = "Enable the forgejo module"; + } // { + meta = { + type = "sp-module-enable"; + default = false; + description = "Enable the forgejo module"; + }; }; location = lib.mkOption { type = lib.types.str; description = "The location to store the forgejo data"; + } // { + meta = { + type = "sp-module-location"; + description = "The location to store the forgejo data"; + }; }; subdomain = lib.mkOption { default = "git";