feat(shan): back up paperless
This commit is contained in:
parent
d68c5a09fe
commit
8add0ecda8
4 changed files with 28 additions and 12 deletions
|
@ -47,14 +47,11 @@
|
||||||
};
|
};
|
||||||
rsync-backup = {
|
rsync-backup = {
|
||||||
enable = true;
|
enable = true;
|
||||||
sources = [
|
sources = [ "/home/ny/notes" ];
|
||||||
"/home/ny/Downloads"
|
|
||||||
"/home/ny/notes"
|
|
||||||
];
|
|
||||||
target = {
|
target = {
|
||||||
location = "backup";
|
location = "brontes-backup";
|
||||||
type = "rsyncd";
|
type = "rsyncd";
|
||||||
host = "shan";
|
host = "nihilus";
|
||||||
};
|
};
|
||||||
incremental.enable = true;
|
incremental.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -18,11 +18,12 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 9523;
|
port = 9523;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
location = "/mnt/backups";
|
||||||
address = "100.64.0.6";
|
address = "100.64.0.6";
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
name = "image-backup";
|
name = "paperless-backup";
|
||||||
comment = "ftp export area";
|
comment = "backups for paperless";
|
||||||
mode = "write";
|
mode = "write";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,6 +14,11 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/backups" = {
|
||||||
|
device = "/dev/disk/by-uuid/00ab5786-5a44-443f-bafa-2c3facf50a30";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
|
|
@ -63,10 +63,23 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.tailscale = {
|
services = {
|
||||||
enable = true;
|
tailscale = {
|
||||||
isExitNode = true;
|
enable = true;
|
||||||
tags = [ "server" ];
|
isExitNode = true;
|
||||||
|
tags = [ "server" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
rsync-backup = {
|
||||||
|
enable = true;
|
||||||
|
sources = [ "/var/lib/paperless" ];
|
||||||
|
target = {
|
||||||
|
location = "paperless-backup";
|
||||||
|
type = "rsyncd";
|
||||||
|
host = "nihilus";
|
||||||
|
};
|
||||||
|
incremental.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue