ark/modules/syncthing/default.nix

13 lines
352 B
Nix
Raw Normal View History

2022-08-15 03:49:56 +03:00
{config, inputs, ...}: {
users.users.syncthing.extraGroups = ["users"];
services.syncthing = {
enable = true;
devices.redmi-phone = {
id = builtins.readFile "${inputs.self}/secrets/redmi-phone.syncthing.id";
introducer = true;
autoAcceptFolders = true;
};
dataDir = "${config.system.persistDir}/syncthing";
};
}