dotfiles/etc/apps/syncthing.nix

9 lines
169 B
Nix
Raw Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, ... }: {
services.syncthing = {
enable = true;
user = "grape";
dataDir = "/home/grape/Documents";
configDir = "/home/grape/.syncthing";
};
}