Configure reMarkable for syncthing

This commit is contained in:
Evie Litherland-Smith 2023-05-07 13:20:39 +01:00
parent 50c4da612b
commit d118c3aed0
3 changed files with 18 additions and 1 deletions

View file

@ -5,6 +5,7 @@
./devices/ion.nix
./devices/monarch.nix
./devices/northstar.nix
./devices/remarkable.nix
];
services.syncthing = {
user = "xenia";
@ -18,7 +19,7 @@
};
"Books" = {
path = "/mnt/secondary/syncthing/books";
devices = [ "monarch" "northstar" ];
devices = [ "monarch" "northstar" "remarkable" ];
enable = true;
};
"Camera" = {
@ -46,6 +47,11 @@
devices = [ "ion" "monarch" "northstar" ];
enable = true;
};
"Xochitl" = {
path = "/mnt/secondary/syncthing/xochitl";
devices = [ "remarkable" ];
enable = true;
};
};
};
}

View file

@ -0,0 +1,4 @@
{ ... }:
{
services.syncthing.devices."remarkable" = { id = "GHB6JKS-JOA3HHP-TYHB3IJ-GLV26QW-RWRZAMG-XYFGFB6-QLUHDSH-GNPZVAO"; };
}

View file

@ -45,6 +45,13 @@
ignorePerms = true;
enable = lib.mkDefault false;
};
"Xochitl" = {
label = "Xochitl";
id = "dkcbx-kq7hl";
type = "receiveonly";
ignorePerms = true;
enable = lib.mkDefault false;
};
};
};
}