24 lines
571 B
Nix
24 lines
571 B
Nix
{ config, lib, ... }:
|
||
|
||
{
|
||
services.syncthing = {
|
||
enable = lib.mkDefault config.sbruder.gui.enable;
|
||
guiAddress = "${config.sbruder.wireguard.home.address}:8384";
|
||
openDefaultPorts = true;
|
||
|
||
user = "simon";
|
||
dataDir = "/home/simon";
|
||
|
||
overrideDevices = false;
|
||
devices = {
|
||
fuuko = {
|
||
id = "Z2OO5LK-N3UVCRD-QKVKLZ3-3LRXUOH-JENBAKQ-M647E3L-7FL6LIE-74GGHQF";
|
||
};
|
||
};
|
||
|
||
overrideFolders = false;
|
||
# folders are not managed statically, because the list of devices can’t be
|
||
# easily generated from the configuration
|
||
};
|
||
}
|