nix-stuff/roles/school/services/syncthing.nix
2023-09-18 22:28:45 +02:00

12 lines
214 B
Nix

{ config, ... }:
{
services.syncthing.folders = {
"school-things" = {
label = "School things";
id = "z6alc-nfoqr";
devices = [ "steamdeck" "server" ];
path = "~/Documents/School things";
};
};
}