Files
infra/inventories/emmie.nix
kurogeek d800b5b3ab mob next [ci-skip] [ci skip] [skip ci]
lastFile:modules/clan/personal-computer/syncthing.nix
2026-03-11 17:54:46 +07:00

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" ];
};
};
};
};
};
};
}