dotfiles/logical/blackadder.nix

34 lines
627 B
Nix
Raw Normal View History

2020-05-21 17:39:38 +02:00
{ config, pkgs, lib, ... }:
{
imports =
[ ../physical/3950x.nix
../roles/workstation.nix
];
system.stateVersion = "19.09";
2021-01-03 17:38:59 +01:00
yorick.lumi-vpn = {
name = "yorick-homepc";
mtu = 1408;
2020-05-21 17:39:38 +02:00
};
2021-01-03 17:01:58 +01:00
services.znapzend = {
enable = true;
pure = true;
features = {
zfsGetType = true;
sendRaw = true;
};
zetup = {
"rpool/home-enc" = {
plan = "1d=>1h,1m=>1w";
destinations.frumar = {
host = "root@192.168.178.37";
dataset = "frumar-new/backup/blackadder";
plan = "1w=>1d,1y=>1w,10y=>1m,50y=>1y";
};
};
};
};
2020-05-21 17:39:38 +02:00
}