mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 19:49:45 +01:00
newsboat: switch from types.string to types.str
This commit is contained in:
parent
cd7b6fdbc1
commit
fd3692b36f
1 changed files with 2 additions and 2 deletions
|
@ -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\"";
|
||||||
|
|
Loading…
Reference in a new issue