modularized :)

This commit is contained in:
Odweta
2026-01-18 10:04:50 +01:00
parent 7b2365c5de
commit 4bae0ce922
49 changed files with 209 additions and 642 deletions
+13
View File
@@ -0,0 +1,13 @@
{ 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;
}