nixos/nitter: fix proxy option

Changed files
+4 -4
nixos
modules
services
misc
+4 -4
nixos/modules/services/misc/nitter.nix
···
enableDebug = mkEnableOption (lib.mdDoc "request logs and debug endpoints");
proxy = mkOption {
-
type = types.nullOr types.str;
-
default = null;
+
type = types.str;
+
default = "";
description = lib.mdDoc "URL to a HTTP/HTTPS proxy.";
};
proxyAuth = mkOption {
-
type = types.nullOr types.str;
-
default = null;
+
type = types.str;
+
default = "";
description = lib.mdDoc "Credentials for proxy.";
};