Files
nixos-flake/modules/services/syncthing.nix
T
2026-01-18 10:04:50 +01:00

14 lines
292 B
Nix

{ config, pkgs, ... }:
{
# Enable Syncthing systemd service for a user
services.syncthing.enable = true;
# Specify the system user who will run Syncthing
services.syncthing.user = "odweta";
# Optional: start automatically at boot
services.syncthing.enableAutostart = false;
}