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