Files
nixos-flake/home/users/odweta/syncthing.nix
T
2026-01-19 15:13:26 +00:00

15 lines
287 B
Nix

{ pkgs, ... }:
{
# Enable Syncthing as a user service
services.syncthing = {
enable = true;
autoStart = false;
dataDir = "$HOME/.config/syncthing"; # default location
gui = {
enable = true;
address = "127.0.0.1:8384"; # localhost GUI
};
};
}