nixos/nitter: fix proxy option

This commit is contained in:
Sophie Tauchert 2023-06-01 19:59:48 +02:00
parent 4f53efe34b
commit 2dbd1e56c1
No known key found for this signature in database
GPG key ID: 52701DE5F5F51125

View file

@ -165,14 +165,14 @@ in
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.";
};