mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
34 lines
655 B
Nix
34 lines
655 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
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"''; };
|
|
};
|
|
|
|
test.stubs.newsboat = { };
|
|
|
|
# The format didn't change since 20.03, just the location.
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/newsboat/urls \
|
|
${./newsboat-basics-urls-2003.txt}
|
|
'';
|
|
};
|
|
}
|