1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-27 17:08:31 +02:00

newsboat: switch from types.string to types.str

This commit is contained in:
Robert Helgesson 2018-12-04 23:42:30 +01:00
parent cd7b6fdbc1
commit fd3692b36f
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

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