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

View File

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