diff options
| author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2023-06-02 09:00:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-02 09:00:33 +0100 |
| commit | 31e0721cedfc237ea50a6f3952921306c6e77aaf (patch) | |
| tree | 1a0aa718047706f2a252d4f3e41fa75db1592409 | |
| parent | Merge pull request #235381 from NixOS/backport-234810-to-release-23.05 (diff) | |
| parent | nixos/nitter: fix proxy option (diff) | |
| download | nixpkgs-31e0721cedfc237ea50a6f3952921306c6e77aaf.tar.gz | |
Merge pull request #235522 from erdnaxe/backport-nitter
[Backport release-23.05] nixos/nitter: fix proxy option
| -rw-r--r-- | nixos/modules/services/misc/nitter.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/misc/nitter.nix b/nixos/modules/services/misc/nitter.nix index d00efe3dd485..9336dbe38f34 100644 --- a/nixos/modules/services/misc/nitter.nix +++ b/nixos/modules/services/misc/nitter.nix @@ -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."; }; |
