Disable ZnapZend remote until it's fixed
This commit is contained in:
parent
fd6d86cdef
commit
379ec5badd
|
@ -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"; };
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# Enable virtualisation
|
||||
virtualisation.libvirtd = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
onBoot = "ignore";
|
||||
onShutdown = "shutdown";
|
||||
qemuPackage = pkgs.qemu_kvm;
|
||||
|
|
Loading…
Reference in New Issue