feat: enable personal calendar and contacts on desktop

This commit is contained in:
Moritz Böhme 2025-06-05 18:57:27 +02:00
parent 216c5f32c9
commit 698b768a24
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 3 additions and 1 deletions

View file

@ -30,6 +30,8 @@
desktop.enable = true;
personal.enable = true;
personal.mail = true;
personal.calendar = true;
personal.contacts = true;
impermanence.enable = true;
webis.enable = true;
};

View file

@ -8,7 +8,7 @@ with lib; let
in {
options.my.profiles.personal.calendar = mkEnableOption "calendar";
config = mkIf cfg.contacts {
config = mkIf cfg.calendar {
environment.persistence."/persist".users.moritz.directories = [
".local/share/vdirsyncer/"
];