Dotfiles/nix/modules/syncthing.nix

11 lines
182 B
Nix
Executable File

{config, pkgs, ...}:
{
services.syncthing = {
enable = true;
user = "horhik";
dataDir = "/home/horhik/Notes";
configDir = "/home/horhik/.config/syncthing";
};
}