From 798804f3a203f44ab196357b9aa6ef35ea5b24b7 Mon Sep 17 00:00:00 2001 From: Henri Saudubray Date: Tue, 17 Feb 2026 17:56:31 +0100 Subject: [PATCH] chore (hosts/mystra/taskd): comments --- hosts/mystra/taskd.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/hosts/mystra/taskd.nix b/hosts/mystra/taskd.nix index bc06cef..cbd7594 100644 --- a/hosts/mystra/taskd.nix +++ b/hosts/mystra/taskd.nix @@ -1,5 +1,23 @@ { ... }: { + # # NOTE: + # After server installation, you must synchronize the clients with + # taskd. To do so, export the user config as follows (on server): + # ```bash + # nixos-taskserver user export personal hms > hms_config.sh + # ``` + # and copy it to the client machine. Run it (on client): + # ```bash + # sh hms_config.sh + # ``` + # and initialize synchronization (on client): + # ```bash + # task sync init + # ``` + # See [this link](https://wiki.kunzelma.de/taskwarrior) for more. + # + # # TODO: find a better way than the mess above. + services.taskserver = { enable = true; fqdn = "henri-saudubray.fr";