nixos-config/modules/syncthing.nix
2022-07-08 11:51:04 +02:00

27 lines
650 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ 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 = {
addresses = [
"tcp://fuuko.home.sbruder.de:22000"
];
id = "Z2OO5LK-N3UVCRD-QKVKLZ3-3LRXUOH-JENBAKQ-M647E3L-7FL6LIE-74GGHQF";
};
};
overrideFolders = false;
# folders are not managed statically, because the list of devices cant be
# easily generated from the configuration
};
}