1 2 3 4 5 6 7 8 9 10 11 12
{config, lib, pkgs, ... }: { systemd.user.services.duply-secrets = { description = "run daily secrets backup"; startAt = "daily"; serviceConfig = { Type = "oneshot"; ExecStart = "{pkgs.duply}/bin/duply omo-secrets backup"; }; }; }