enable recurrence only on one hosts per 'man task-sync'

This commit is contained in:
2025-11-24 18:47:10 +01:00
parent f93eecfcb1
commit 80e74d3283
3 changed files with 21 additions and 2 deletions

View File

@@ -1 +1,19 @@
import ../astyanax
{
lib,
inputs,
config,
pkgs,
...
}:
{
imports = [
(import ../astyanax {
inherit inputs;
inherit config;
inherit pkgs;
})
];
programs.taskwarrior.config.recurrence = lib.mkForce "on";
}