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