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 | |
| 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')
| -rw-r--r-- | home-modules/services/vdirsyncer.nix | 6 | ||||
| -rw-r--r-- | home-modules/theming.nix | 8 |
2 files changed, 9 insertions, 5 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}" diff --git a/home-modules/theming.nix b/home-modules/theming.nix index ee6b13b..94af4ac 100644 --- a/home-modules/theming.nix +++ b/home-modules/theming.nix @@ -36,8 +36,12 @@ in qt = { enable = true; - platformTheme.name = "qtct"; - style.name = "kvantum"; + kde.settings = { + + }; + style.package = pkgs.catppuccin-qt5ct; + + # style.name = "kvantum"; }; xdg.configFile."Kvantum/kvantum.kvconfig".source = |
