Enable vdirsyncer service, fix metasync for contacts
This commit is contained in:
parent
341c5a6eca
commit
9e79181f9a
|
@ -1,6 +1,7 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
programs.vdirsyncer.enable = true;
|
||||||
accounts.contact = {
|
accounts.contact = {
|
||||||
basePath = ".contact";
|
basePath = ".contact";
|
||||||
accounts = {
|
accounts = {
|
||||||
|
@ -19,7 +20,6 @@
|
||||||
vdirsyncer = {
|
vdirsyncer = {
|
||||||
enable = true;
|
enable = true;
|
||||||
collections = [ "from a" ];
|
collections = [ "from a" ];
|
||||||
metadata = [ "color" "displayname" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,4 +2,8 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./email.nix ./calendar.nix ./contact.nix ];
|
imports = [ ./email.nix ./calendar.nix ./contact.nix ];
|
||||||
|
services = {
|
||||||
|
mbsync.enable = true;
|
||||||
|
vdirsyncer.enable = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
mu.enable = true;
|
mu.enable = true;
|
||||||
};
|
};
|
||||||
services.mbsync.enable = true;
|
|
||||||
accounts.email = {
|
accounts.email = {
|
||||||
maildirBasePath = ".mail";
|
maildirBasePath = ".mail";
|
||||||
accounts = let realName = "Evie Litherland-Smith";
|
accounts = let realName = "Evie Litherland-Smith";
|
||||||
|
|
Loading…
Reference in a new issue