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

This commit is contained in:
2025-10-11 11:10:21 -05:00
parent fa62f88352
commit d4b38ba1e7
5 changed files with 11 additions and 11 deletions

View File

@@ -138,9 +138,9 @@ in
};
# add to backups
modules.system.backups.baks = {
hass = { paths = [ cfg.data_dir ]; };
};
# modules.system.backups.baks = {
# hass = { paths = [ cfg.data_dir ]; };
# };
};
}

View File

@@ -97,8 +97,8 @@ in
};
# add to backups
modules.system.backups.baks = {
mosquitto = { paths = [ cfg.data_dir ]; };
};
# modules.system.backups.baks = {
# mosquitto = { paths = [ cfg.data_dir ]; };
# };
};
}

View File

@@ -112,8 +112,8 @@ in
};
# add to backups
modules.system.backups.baks = {
zigbee2mqtt = { paths = [ cfg.data_dir ]; };
};
# modules.system.backups.baks = {
# zigbee2mqtt = { paths = [ cfg.data_dir ]; };
# };
};
}

View File

@@ -112,7 +112,7 @@ in
# add to backups
modules.system.backups.baks = {
vaultwarden = { paths = [ cfg.data_dir ]; };
${service} = { paths = [ cfg.data_dir ]; };
};
};
}

View File

@@ -24,7 +24,7 @@ in
options.modules.system.backups = {
enable = lib.mkEnableOption "enables backups with borg";
baks = lib.mkOption {
type = lib.types.attrsOf (lib.types.attrsOf (lib.types.listOf lib.types.path));
type = lib.types.attrsOf (lib.types.attrsOf (lib.types.listOf lib.types.path));
default = {};
description = "backup jobs, nested attribute sets should be <bak_name> = paths [<list_of_paths>]";
};