nixos-config/tests/modules/home-manager/services/archivebox/basic-job.nix

22 lines
498 B
Nix

{ config, ... }:
{
services.archivebox = {
enable = true;
archivePath = "${config.xdg.userDirs.documents}/ArchiveBox";
jobs.art = {
links =
[ "https://www.davidrevoy.com/" "https://www.youtube.com/c/ronillust" ];
startAt = "weekly";
};
};
test.stubs.archivebox = { };
nmt.script = ''
assertFileExists home-files/.config/systemd/user/archivebox-job-art.service
assertFileExists home-files/.config/systemd/user/archivebox-job-art.timer
'';
}