nixos-config/nixos/machines/chungus/disko-syncoid.nix

15 lines
218 B
Nix
Raw Normal View History

2023-08-28 22:53:55 +02:00
{ ... }:
{
services.syncoid = {
enable = true;
commands.service2 = {
source = "zroot/services2";
target = "zraid/mirror/services2";
};
commonArgs = [
"--no-sync-snap"
];
};
}