Configured Syncthing & various other minor changes

This commit is contained in:
lulusilly 2025-10-18 18:35:53 -04:00
parent 7b080f7f11
commit ba811dbc3c
20 changed files with 464 additions and 10 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, inputs, ... }:
{
services.syncthing = {
enable = true;
user = "lunita";
group = "syncthing";
dataDir = "/home/lunita/Sync";
configDir = "/home/lunita/.config/syncthing";
};
}