From 10611475a637c6e5e7dc4ebc238625e1eca4f5c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Wed, 25 Feb 2026 11:56:30 +0100 Subject: [PATCH] Fixed typo `type` --> `types`. --- modules/global.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/global.nix b/modules/global.nix index b41f16c..c78f471 100644 --- a/modules/global.nix +++ b/modules/global.nix @@ -5,19 +5,19 @@ with lib; { options.numbus = { owner = { - type = type.str; + type = types.str; example = "Alex"; default = "Numbus"; description = "The name of the person who owns this server"; }; language = { - type = type.str; + type = types.str; example = "FR"; default = "FR"; description = "The language for this server"; }; locale = { - type = type.str; + type = types.str; example = "fr_FR"; default = "fr_FR"; description = "The default locale for this server";