285 current 2025-10-11 08:57:30 25.05.20251006.20c4598 6.12.50 *

This commit is contained in:
2025-10-11 09:23:57 -05:00
parent 1533db75f4
commit 2854340455

View File

@@ -15,12 +15,10 @@ in
description = "list of directories to back up"; description = "list of directories to back up";
}; };
jobs = lib.mkOption { jobs = lib.mkOption {
type = lib.types.nullOr ( type = lib.types.attrsOf ( # the set up backup jobs
lib.types.attrsOf ( # the set up backup jobs
lib.types.attrsOf ( # the set of paths lib.types.attrsOf ( # the set of paths
lib.types.listOf lib.types.path # the paths lib.types.listOf lib.types.path # the paths
) )
)
); );
default = null; default = null;
description = "Borg backup jobs; each job has a list of paths."; description = "Borg backup jobs; each job has a list of paths.";