newsboat: switch from types.string to types.str

(cherry picked from commit fd3692b36f)
This commit is contained in:
Robert Helgesson 2018-12-04 23:42:30 +01:00
parent ab562d4c2a
commit 159ee7a269
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -45,13 +45,13 @@ in
}; };
browser = mkOption { browser = mkOption {
type = types.string; type = types.str;
default = "${pkgs.xdg_utils}/bin/xdg-open"; default = "${pkgs.xdg_utils}/bin/xdg-open";
description = "External browser to use."; description = "External browser to use.";
}; };
queries = mkOption { queries = mkOption {
type = types.attrsOf types.string; type = types.attrsOf types.str;
default = {}; default = {};
example = { example = {
"foo" = "rssurl =~ \"example.com\""; "foo" = "rssurl =~ \"example.com\"";