Merge pull request #235425 from 999eagle/fix/nitter

nixos/nitter: fix proxy option
This commit is contained in:
Nick Cao
2023-06-01 20:26:54 -06:00
committed by GitHub
+4 -4
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.";
};