1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/newsboat/newsboat-basics.nix

32 lines
546 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.newsboat = {
enable = true;
urls = [
{
url = "http://example.org/feed.xml";
tags = [ "tag1" "tag2" ];
title = "Cool feed";
}
2020-02-02 00:39:17 +01:00
{ url = "http://example.org/feed2.xml"; }
];
2020-02-02 00:39:17 +01:00
queries = { "foo" = ''rssurl =~ "example.com"''; };
};
test.stubs.newsboat = { };
nmt.script = ''
assertFileContent \
home-files/.newsboat/urls \
${./newsboat-basics-urls.txt}
'';
};
}