Add role for zrepl.

This commit is contained in:
Tom Alexander 2025-01-13 17:59:03 -05:00
parent dbf3f2e983
commit ce9140aa73
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 46 additions and 0 deletions

View File

@ -24,6 +24,7 @@
./roles/network ./roles/network
./roles/firewall ./roles/firewall
./roles/zsh ./roles/zsh
./roles/zrepl
./roles/graphics ./roles/graphics
./roles/sound ./roles/sound
./roles/sway ./roles/sway

View File

@ -0,0 +1,45 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
services.zrepl = {
enable = true;
settings = {
jobs = [
{
name = "snapjob";
type = "snap";
filesystems = {
"zroot/linux/nix/persist<" = true;
"zroot/bridge<" = true;
};
snapshotting = {
type = "periodic";
interval = "15m";
prefix = "zrepl_";
};
pruning = {
keep = [
{
type = "grid";
grid = "1x1h(keep=all) | 24x1h | 14x1d";
regex = "^zrepl_.*";
}
{
type = "regex";
negate = true;
regex = "^zrepl_.*";
}
];
};
}
];
};
};
}