lol

nixos/nitter: fix proxy option

+4 -4
+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 - type = types.nullOr types.str; 169 - default = null; 168 + type = types.str; 169 + default = ""; 170 170 description = lib.mdDoc "URL to a HTTP/HTTPS proxy."; 171 171 }; 172 172 173 173 proxyAuth = mkOption { 174 - type = types.nullOr types.str; 175 - default = null; 174 + type = types.str; 175 + default = ""; 176 176 description = lib.mdDoc "Credentials for proxy."; 177 177 }; 178 178