fixup the zrepl config
Graham Christensen committed
Oct 22, 2022 at 19:05 UTC
db1b30e60476899c77d98f9d36a947469cd344ab
1 file changed
+16
delft/haumea.nix
+16
@@ -254,6 +254,7 @@
254
prefix = "zrepl_snap_";
255
};
256
connect = {
257
+ identity_file = "/root/.ssh/id_ed25519";
258
type = "ssh+stdinserver";
259
host = "lord-nibbler.gsc.io";
260
user = "hydraexport";
@@ -297,11 +298,26 @@
298
send.encrypted = true;
299
snapshotting.type = "manual";
300
connect = {
301
+ identity_file = "/root/.ssh/id_ed25519";
302
type = "ssh+stdinserver";
303
host = "mbosch.me";
304
user = "hno";
305
port = 22;
306
};
307
+ pruning = {
308
+ keep_sender = [
309
+ {
310
+ type = "regex";
311
+ regex = ".*";
312
+ }
313
+ ];
314
+ keep_receiver = [
315
+ {
316
+ type = "regex";
317
+ regex = ".*";
318
+ }
319
+ ];
320
+ };
321
}
322
];
323
};