aboutsummaryrefslogtreecommitdiff
path: root/modules/user/syncthing.nix
blob: e7196728b18efd03f5e73fee622fd1e5b0df2a76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, ... }:
{
  services.syncthing.settings = {
    devices = {
      angel = {
        addresses = [ "tcp://10.6.6.2:22000" ];
        id = "DN6TIYA-X4BUO4M-4VQKZFO-NP2QYNY-NRNXE4S-QT6WTNK-FW4ZASY-2GJ3QAZ";
      };
    };

    folders = {
      "/home/rosa/Documents/Security" = {
        devices = [ "angel" ];
        id = "passwords_and_such";
      };
    };
  };
}