Files
nixos-flake/home/users/odweta/syncthing.nix
T

15 lines
287 B
Nix

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