configured syncoid

This commit is contained in:
Ingolf Wagner 2023-08-28 22:53:55 +02:00
parent f76b52d2fe
commit 386198098f
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 15 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./hardware-configuration.nix
../../system/server
./disko-config.nix
./disko-syncoid.nix
./packages.nix
./network-wireguard.nix

View file

@ -0,0 +1,14 @@
{ ... }:
{
services.syncoid = {
enable = true;
commands.service2 = {
source = "zroot/services2";
target = "zraid/mirror/services2";
};
commonArgs = [
"--no-sync-snap"
];
};
}