1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-10 15:18:43 +02:00
home-manager/tests/modules/programs/qcal/webdav-calendar.nix

27 lines
565 B
Nix
Raw Normal View History

2023-08-12 22:07:04 +02:00
{ pkgs, lib, ... }:
{
programs.qcal = {
enable = true;
defaultNumDays = 23;
timezone = "Europe/Berlin";
};
accounts.calendar.accounts.test = {
qcal.enable = true;
remote = {
url = "https://cal.example.com/anton/work";
userName = "anton";
passwordCommand = [ "pass" "show" "calendar" ];
};
};
test.stubs = { qcal = { }; };
nmt.script = ''
assertFileExists home-files/.config/qcal/config.json
assertFileContent home-files/.config/qcal/config.json ${
./webdav-calendar.json-expected
}
'';
}