dotfiles/hosts/strix/apps/syncthing.nix

10 lines
169 B
Nix
Executable file

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