mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
|
{ lib, config, options, pkgs, modulesPath, ... }:
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.yoda.btrbkSnapshots;
|
||
|
hourly = {
|
||
|
preserve-min = "2d";
|
||
|
preserve = "24h 7d 4w 6m";
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
yoda.btrbkSnapshots = mkOption {
|
||
|
type = types.listOf types.attrs;
|
||
|
default = [];
|
||
|
example = [{
|
||
|
instance = "local-snapshot-ssd";
|
||
|
volume = "/jc-data";
|
||
|
snapshot_dir = "/snap";
|
||
|
subvolume = {
|
||
|
"arch.p1st.de" = {};
|
||
|
};
|
||
|
}];
|
||
|
description = ''
|
||
|
List containing attrsets.
|
||
|
Each attrset is used to create one btrbk instance.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# lib.forEach:
|
||
|
# https://github.com/NixOS/nixpkgs/blob/54f00576aa6139a9d54062d0edc2fb31423f0ffb/lib/lists.nix#L36
|
||
|
# lib.attrsets.mergeAttrsList:
|
||
|
# https://github.com/NixOS/nixpkgs/blob/54f00576aa6139a9d54062d0edc2fb31423f0ffb/lib/attrsets.nix#L786
|
||
|
config = {
|
||
|
services.btrbk.instances =
|
||
|
# Merge list of attr sets into one attr set.
|
||
|
attrsets.mergeAttrsList (
|
||
|
forEach
|
||
|
cfg
|
||
|
(x:
|
||
|
# `services.btrbk.instances` template.
|
||
|
{
|
||
|
"${x.instance}" = {
|
||
|
#onCalendar = null;
|
||
|
onCalendar = "hourly";
|
||
|
settings = {
|
||
|
timestamp_format = "long";
|
||
|
|
||
|
snapshot_preserve_min = hourly.preserve-min;
|
||
|
snapshot_preserve = hourly.preserve;
|
||
|
|
||
|
volume."${x.volume}" = {
|
||
|
snapshot_dir = x.snapshot_dir;
|
||
|
subvolume = x.subvolume;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
)
|
||
|
);
|
||
|
};
|
||
|
}
|