lib/config/options: fix mqttServer options

This commit is contained in:
Astro 2022-07-16 01:31:46 +02:00
parent 5b1c0301d5
commit fb741b9e3f
1 changed files with 2 additions and 2 deletions

View File

@ -583,11 +583,11 @@ in
type = types.str; type = types.str;
default = config.site.net.serv.hosts4.broker; default = config.site.net.serv.hosts4.broker;
}; };
user = { user = mkOption {
type = types.str; type = types.str;
default = "user"; default = "user";
}; };
password = { password = mkOption {
type = types.str; type = types.str;
default = "secret"; default = "secret";
}; };