nix-dotfiles/modules/network/syncthing/default.nix

20 lines
340 B
Nix
Raw Normal View History

2023-11-19 19:31:04 -08:00
{ config, pkgs, lib, ... }:
{
services.syncthing = {
enable = true;
user = "pan";
dataDir = "/home/pan/dox/Sync";
configDir = "/home/pan/.config/syncthing";
overrideFolders = true;
overrideDevices = true;
settings = {
gui = {
user = "pan";
password = "password";
};
};
};
2023-11-19 19:31:04 -08:00
}