mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-01 06:27:18 +00:00
11 lines
182 B
Nix
11 lines
182 B
Nix
|
{config, pkgs, ...}:
|
||
|
{
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
user = "horhik";
|
||
|
dataDir = "/home/horhik/Notes";
|
||
|
configDir = "/home/horhik/.config/syncthing";
|
||
|
};
|
||
|
|
||
|
}
|