75 lines
2.1 KiB
Nix
75 lines
2.1 KiB
Nix
{ config, ... }:
|
|
{
|
|
services = {
|
|
syncthing = {
|
|
enable = true;
|
|
guiAddress = "${config.networking.hostName}.fleet:8434";
|
|
# TODO Use the home-manager module instead of the following conditions
|
|
user = if config.networking.hostName == "sisko" then "syncthing" else "ccr";
|
|
dataDir = if config.networking.hostName == "sisko" then "/mnt/hd/syncthing" else "/home/ccr";
|
|
settings = {
|
|
options = {
|
|
urAccepted = 1; # anonymous usage data report
|
|
globalAnnounceEnabled = false; # Only sync when connected to the VPN
|
|
};
|
|
devices = {
|
|
picard = {
|
|
id = "XKSCJ46-EM6GIZ7-6ABQTZZ-ZRVWVFM-MJ3QNVG-F5EWHY5-ZUNYVSL-DA77YAG";
|
|
addresses = [
|
|
"tcp://picard.fleet"
|
|
];
|
|
};
|
|
sisko = {
|
|
id = "5JYQLMP-KNBMSOE-I452UDU-UTKPXJI-K27X2DI-MSCSRCG-6V54Q6U-NVGXPQA";
|
|
addresses = [
|
|
"tcp://sisko.fleet"
|
|
];
|
|
};
|
|
kirk = {
|
|
id = "OVPXSCE-XFKCBJ2-A4SKJRI-DYBZ6CV-U2OFNA2-ALHOPW5-PPMHOIQ-5TG2HAJ";
|
|
addresses = [
|
|
"tcp://kirk.fleet"
|
|
];
|
|
};
|
|
oneplus8t = {
|
|
id = "KMB2YRF-DGTWU24-SLITU23-5TN7BMQ-6PFAQQZ-CZ7J2QL-PIGVBTU-VRFRMQV";
|
|
addresses = [
|
|
"tcp://oneplus8t.fleet"
|
|
];
|
|
};
|
|
};
|
|
folders = {
|
|
org = {
|
|
path =
|
|
{
|
|
picard = "/home/ccr/org";
|
|
sisko = "/mnt/hd/syncthing/org";
|
|
kirk = "/home/ccr/org";
|
|
}
|
|
.${config.networking.hostName};
|
|
devices = [
|
|
"picard"
|
|
"sisko"
|
|
"kirk"
|
|
"oneplus8t"
|
|
];
|
|
};
|
|
sync = {
|
|
path =
|
|
{
|
|
picard = "/home/ccr/sync";
|
|
sisko = "/mnt/hd/syncthing/sync";
|
|
kirk = "/home/ccr/sync";
|
|
}
|
|
.${config.networking.hostName};
|
|
devices = [
|
|
"picard"
|
|
"sisko"
|
|
"kirk"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|