288 current 2025-10-11 10:03:00 25.05.20251006.20c4598 6.12.50 *

This commit is contained in:
2025-10-11 10:24:01 -05:00
parent f51570624b
commit 3b4d0e3152

View File

@@ -1,18 +1,18 @@
{ config, lib, pkgs, ... }:
/*
this module enables a backup script made with borg!
to use import & set the options below
to declare a backup add the following code
to a module and it will backup all listed paths
in a borg archive to the specified repo
#
# this module enables a backup script made with borg!
# to use import & set the options below
# to declare a backup add the following code
# to a module and it will backup all listed paths
# in a borg archive to the specified repo
#
# | <3yy> |
# V V
# modules.system.backups.baks = {
# ${service} = { paths = [ cfg.data_dir ]; };
# };
| <3yy> |
V V
modules.system.backups.baks = {
${service} = { paths = [ cfg.data_dir ]; };
};
*/
let
cfg = config.modules.system.backups;