dotfiles/etc/apps/syncthing.nix
2024-05-18 01:10:04 +02:00

9 lines
169 B
Nix
Executable file

{ pkgs, ... }: {
services.syncthing = {
enable = true;
user = "grape";
dataDir = "/home/grape/Documents";
configDir = "/home/grape/.syncthing";
};
}