From 698b768a24b8180aa13bf2d52119b8f2b4687db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Thu, 5 Jun 2025 18:57:27 +0200 Subject: [PATCH] feat: enable personal calendar and contacts on desktop --- machines/moritz-desktop/configuration.nix | 2 ++ modules/moritz/profiles/personal_calendar.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/machines/moritz-desktop/configuration.nix b/machines/moritz-desktop/configuration.nix index 0ab1f1c..e089aed 100644 --- a/machines/moritz-desktop/configuration.nix +++ b/machines/moritz-desktop/configuration.nix @@ -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; }; diff --git a/modules/moritz/profiles/personal_calendar.nix b/modules/moritz/profiles/personal_calendar.nix index af32e19..e4b7358 100644 --- a/modules/moritz/profiles/personal_calendar.nix +++ b/modules/moritz/profiles/personal_calendar.nix @@ -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/" ];