Disable ZnapZend remote until it's fixed

This commit is contained in:
coolneng 2020-06-01 19:39:12 +02:00
parent fd6d86cdef
commit 379ec5badd
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 12 additions and 21 deletions

View File

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
# ZFS automatic backup solution # ZFS automatic backup solution
services.znapzend = { services.znapzend = {
enable = true; enable = true;
autoCreation = true; autoCreation = true;
@ -11,24 +11,16 @@
}; };
zetup = { zetup = {
"syscea/stateful/root" = { "syscea/stateful/root" = {
plan = "1d=>1h,1m=>1d,1y=>1m"; plan = "1day=>1hour,1month=>1day,1year=>1month";
recursive = true; recursive = true;
mbuffer.enable = true; mbuffer.enable = true;
destinations.remote = { };
host = "coolneng@zion";
dataset = "vault/backups/panacea/root";
};
};
"syscea/stateful/home" = { "syscea/stateful/home" = {
plan = "1d=>1h,1m=>1d,1y=>1m"; plan = "1day=>1hour,1month=>1day,1year=>1month";
recursive = true; recursive = true;
mbuffer.enable = true; mbuffer.enable = true;
destinations.remote = { };
host = "coolneng@zion";
dataset = "vault/backups/panacea/home";
};
};
}; };
}; };
@ -39,7 +31,10 @@
dataDir = "/home/coolneng"; dataDir = "/home/coolneng";
declarative = { declarative = {
devices = { devices = {
zion = { id = "XABIMVG-K5RKMAF-KNC33AR-TDAVEGK-GHUIVFD-NIFCX6L-6PQXRM5-KLK2PAU"; }; zion = {
id =
"XABIMVG-K5RKMAF-KNC33AR-TDAVEGK-GHUIVFD-NIFCX6L-6PQXRM5-KLK2PAU";
};
}; };
folders = { folders = {
Documents = { Documents = {
@ -48,9 +43,7 @@
devices = [ "zion" ]; devices = [ "zion" ];
versioning = { versioning = {
type = "simple"; type = "simple";
params = { params = { keep = "5"; };
keep = "5";
};
}; };
}; };
@ -60,9 +53,7 @@
devices = [ "zion" ]; devices = [ "zion" ];
versioning = { versioning = {
type = "simple"; type = "simple";
params = { params = { keep = "5"; };
keep = "5";
};
}; };
}; };

View File

@ -6,7 +6,7 @@
# Enable virtualisation # Enable virtualisation
virtualisation.libvirtd = { virtualisation.libvirtd = {
enable = false; enable = true;
onBoot = "ignore"; onBoot = "ignore";
onShutdown = "shutdown"; onShutdown = "shutdown";
qemuPackage = pkgs.qemu_kvm; qemuPackage = pkgs.qemu_kvm;