nixos-dotfiles/hosts/titan/services/syncthing.nix

8 lines
146 B
Nix
Raw Normal View History

inputs: { pkgs, ... }: {
services.syncthing = {
enable = true;
user = "ultra";
dataDir = "/home/ultra/.local/lib/syncthing";
};
}