Fixed wrongly defined options.
This commit is contained in:
+3
-3
@@ -4,19 +4,19 @@ with lib;
|
|||||||
|
|
||||||
{
|
{
|
||||||
options.numbus = {
|
options.numbus = {
|
||||||
owner = {
|
owner = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "Alex";
|
example = "Alex";
|
||||||
default = "Numbus";
|
default = "Numbus";
|
||||||
description = "The name of the person who owns this server";
|
description = "The name of the person who owns this server";
|
||||||
};
|
};
|
||||||
language = {
|
language = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "FR";
|
example = "FR";
|
||||||
default = "FR";
|
default = "FR";
|
||||||
description = "The language for this server";
|
description = "The language for this server";
|
||||||
};
|
};
|
||||||
locale = {
|
locale = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "fr_FR";
|
example = "fr_FR";
|
||||||
default = "fr_FR";
|
default = "fr_FR";
|
||||||
|
|||||||
Reference in New Issue
Block a user