From c1405312851b140231505c224fd81045c439fa7d Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 26 Nov 2023 15:33:28 -0800 Subject: [PATCH] username -> user --- frigate-container.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frigate-container.nix b/frigate-container.nix index 7fa6c0e..e17b132 100644 --- a/frigate-container.nix +++ b/frigate-container.nix @@ -15,7 +15,7 @@ let frigateCfg = toJSON { mqtt = { enabled = true; - inherit (cfg.mqtt) host port; + inherit (cfg.mqtt) host port user; password = "{FRIGATE_MQTT_PASSWORD}"; }; logger.default = cfg.log-level; @@ -163,14 +163,14 @@ in { description = "Port on which to contact the MQTT server."; }; - username = mkOption { + user = mkOption { type = str; description = "User as which to connect to server."; }; password-file = mkOption { type = str; - description = + descriptionq = "File containing password with which to authenticate to MQTT server."; }; };