dotfiles/hosts/strix/apps/syncthing.nix

10 lines
169 B
Nix
Raw Normal View History

2025-01-11 12:03:31 +01:00
{ pkgs, ... }:
{
2024-04-28 11:35:35 +02:00
services.syncthing = {
enable = true;
user = "grape";
dataDir = "/home/grape/Documents";
configDir = "/home/grape/.syncthing";
};
}