1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-03 03:33:36 +00:00
Dotfiles/nix/modules/syncthing.nix
2021-05-30 22:10:25 +03:00

11 lines
182 B
Nix

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