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/qcal/http-calendar.nix

15 lines
346 B
Nix
Raw Normal View History

2023-08-12 22:07:04 +02:00
{
programs.qcal.enable = true;
accounts.calendar.accounts.test = {
qcal.enable = true;
remote = { url = "https://example.com/events.ical"; };
};
nmt.script = ''
assertFileExists home-files/.config/qcal/config.json
assertFileContent home-files/.config/qcal/config.json ${
./http-calendar.json-expected
}
'';
}