tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/nitter: fix proxy option
Sophie Tauchert
2 years ago
2dbd1e56
4f53efe3
+4
-4
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
misc
nitter.nix
+4
-4
nixos/modules/services/misc/nitter.nix
···
165
165
enableDebug = mkEnableOption (lib.mdDoc "request logs and debug endpoints");
166
166
167
167
proxy = mkOption {
168
168
-
type = types.nullOr types.str;
169
169
-
default = null;
168
168
+
type = types.str;
169
169
+
default = "";
170
170
description = lib.mdDoc "URL to a HTTP/HTTPS proxy.";
171
171
};
172
172
173
173
proxyAuth = mkOption {
174
174
-
type = types.nullOr types.str;
175
175
-
default = null;
174
174
+
type = types.str;
175
175
+
default = "";
176
176
description = lib.mdDoc "Credentials for proxy.";
177
177
};
178
178