Files
nixos/hosts/modules/syncthing.nix
Alexander Wainwright c565a01115 Add syncthing to alt
2025-12-24 00:58:49 +10:00

12 lines
223 B
Nix

{ config, pkgs, inputs, ... }:
{
# sync thing
services.syncthing = {
enable = true;
openDefaultPorts = true;
user = "alex";
configDir = "/home/alex/.config/syncthing";
dataDir = "/home/alex";
};
}