From b553d116161dd9fa461d2b70328504095666c496 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Fri, 2 May 2014 00:41:47 -0500 Subject: [PATCH] btsync: Default to no login/password for the Web UI Signed-off-by: Austin Seipp --- nixos/modules/services/networking/btsync.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/networking/btsync.nix b/nixos/modules/services/networking/btsync.nix index 898aed82591..5d0e17c293e 100644 --- a/nixos/modules/services/networking/btsync.nix +++ b/nixos/modules/services/networking/btsync.nix @@ -164,6 +164,7 @@ in httpLogin = mkOption { type = types.str; example = "allyourbase"; + default = ""; description = '' HTTP web login username. ''; @@ -172,6 +173,7 @@ in httpPass = mkOption { type = types.str; example = "arebelongtous"; + default = ""; description = '' HTTP web login password. '';