mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
11 lines
234 B
Nix
11 lines
234 B
Nix
{ lib, pkgs, username, ... }:
|
|
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
user = username;
|
|
dataDir = "/home/${username}/Sync";
|
|
configDir = "/home/${username}/.config/syncthing";
|
|
guiAddress = "127.0.0.1:8384";
|
|
};
|
|
} |