33 lines
689 B
Nix
33 lines
689 B
Nix
{ config, ... }:
|
|
{
|
|
clan.inventory = {
|
|
tags = {
|
|
emmie = [ "rana" ];
|
|
};
|
|
|
|
instances = {
|
|
emmie-syncthing = {
|
|
module = {
|
|
name = "syncthing";
|
|
input = "clan-core";
|
|
};
|
|
roles.peer.tags.emmie = { };
|
|
roles.peer.settings = {
|
|
folders = {
|
|
Syncthing = {
|
|
path = "/var/lib/syncthing/Syncthing";
|
|
};
|
|
};
|
|
extraDevices = {
|
|
pixel7a = {
|
|
id = "CEUJMEG-SOHXIJF-G2FT5QB-6MZW3EN-PONI3QN-HPEIOSU-IMSLGW7-XUU6BQK";
|
|
name = "eris";
|
|
addresses = [ "dynamic" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|