1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/newsboat/newsboat-basics-2105.nix

27 lines
527 B
Nix
Raw Normal View History

{
home.stateVersion = "21.05";
programs.newsboat = {
enable = true;
urls = [
{
url = "http://example.org/feed.xml";
tags = [ "tag1" "tag2" ];
title = "Cool feed";
}
{ url = "http://example.org/feed2.xml"; }
];
queries = { "foo" = ''rssurl =~ "example.com"''; };
};
# The format didn't change since 20.03, just the location.
nmt.script = ''
assertFileContent \
home-files/.config/newsboat/urls \
${./newsboat-basics-urls-2003.txt}
'';
}