diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-02-11 14:58:56 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-02-11 14:58:56 +0100 |
| commit | 41df7d18185c689811e9758ddab4673a30dee405 (patch) | |
| tree | a15d9278dc5c2aabc191a74e60aa8974180538e8 /home-modules/services | |
| parent | e0cebbe2129e66047ca9ba233d3b7c59af473c24 (diff) | |
Migrate to stalwart for vdirsyncer and add motd.
This adds rust-motd config and adds an executable that displays the motd.
Additionally, it updates credentials for vdirsyncer.
Diffstat (limited to 'home-modules/services')
| -rw-r--r-- | home-modules/services/vdirsyncer.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home-modules/services/vdirsyncer.nix b/home-modules/services/vdirsyncer.nix index df76bc8..8afe2c8 100644 --- a/home-modules/services/vdirsyncer.nix +++ b/home-modules/services/vdirsyncer.nix @@ -10,7 +10,7 @@ in options.homesv.vdirsyncer = { enable = lib.mkEnableOption "Enable syncing via vdirsyncer"; user = lib.mkOption { default = config.home.username; }; - server = lib.mkOption { default = "https://webdav.wilkuu.xyz/dav.php"; }; + server = lib.mkOption { default = "https://mail.wilkuu.xyz/dav/"; }; }; config = lib.mkIf cfg.enable { sops.secrets.webdav_uname = { @@ -45,7 +45,7 @@ in [storage contacts_remote] type = "carddav" - auth = "digest" + auth = "basic" url = "${cfg.server}" username = "${config.sops.placeholder.webdav_uname}" password = "${config.sops.placeholder.webdav_pass}" @@ -64,7 +64,7 @@ in [storage calendar_remote] type = "caldav" - auth = "digest" + auth = "basic" url = "${cfg.server}" username = "${config.sops.placeholder.webdav_uname}" password = "${config.sops.placeholder.webdav_pass}" |
