mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
pimsync: extend test to contacts
If I had added such a test right away, I would have encountered #8258 myself. I mistakenly believed the contact and calendar modules to be the same.
This commit is contained in:
parent
bf003999ed
commit
c3d1e5c65a
2 changed files with 33 additions and 0 deletions
|
|
@ -22,6 +22,22 @@
|
|||
basePath = ".local/state/calendar";
|
||||
};
|
||||
|
||||
accounts.contact = {
|
||||
accounts.carddav = {
|
||||
pimsync.enable = true;
|
||||
remote = {
|
||||
passwordCommand = [
|
||||
"pass"
|
||||
"carddav"
|
||||
];
|
||||
type = "carddav";
|
||||
url = "https://carddav.example.com";
|
||||
userName = "bob";
|
||||
};
|
||||
};
|
||||
basePath = ".local/state/contact";
|
||||
};
|
||||
|
||||
programs.pimsync = {
|
||||
enable = true;
|
||||
settings = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue