3
0
Fork 0
forked from mirrors/nixpkgs

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
commit 9e2fa20321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.";
};