nix/nixos/common/services/syncthing.nix

17 lines
556 B
Nix
Raw Normal View History

2024-02-13 14:10:40 +01:00
{pkgs, config, ... }: {
services.syncthing = {
settings = {
2024-02-13 14:11:47 +01:00
devices = {
2024-02-13 14:10:40 +01:00
"win10-desktop" = {
name = "win10-desktop";
id = "VDAEJGQ-RA7GAT5-KLA7SRL-X2CV2EG-RMRMD6Z-TFE36JA-2TBBQG2-ED346AL";
};
2024-03-10 01:31:42 +01:00
"framework-server" = { # The docker container, not the host
2024-02-13 14:10:40 +01:00
name = "framework-server";
id = "ULRNA7N-Q7WTZR3-PDQW52W-IWT4UOG-ABF5RCT-W6XJXOW-WQTJIWR-GBFUJQR";
};
};
};
};
2024-03-10 01:31:42 +01:00
}