mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
9 lines
187 B
Nix
9 lines
187 B
Nix
{username, ...}: {
|
|
services.syncthing = {
|
|
enable = false;
|
|
user = "${username}";
|
|
dataDir = "/home/${username}";
|
|
configDir = "/home/${username}/.config/syncthing";
|
|
};
|
|
}
|