dotfiles/hosts/thinkpad/apps/syncthing.nix

10 lines
177 B
Nix
Raw Normal View History

2025-01-11 12:03:31 +01:00
{ pkgs, user, ... }:
{
2024-04-28 11:35:35 +02:00
services.syncthing = {
enable = true;
2025-01-11 12:03:31 +01:00
user = "${user}";
dataDir = "/home/peach/Documents";
configDir = "/home/peach/.syncthing";
2024-04-28 11:35:35 +02:00
};
}