1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-18 21:47:51 +00:00
Dotfiles/nix/modules/syncthing.nix

11 lines
182 B
Nix
Raw Normal View History

2021-05-30 19:10:25 +00:00
{config, pkgs, ...}:
{
services.syncthing = {
enable = true;
user = "horhik";
dataDir = "/home/horhik/Notes";
configDir = "/home/horhik/.config/syncthing";
};
}