Files
nixos-config/home/common/programs/syncthing.nix
T
Miguel Palhas a436a816b6 git scripts
2024-10-06 14:36:09 +01:00

8 lines
112 B
Nix

{ pkgs, ... }:
{
services.syncthing = {
enable = true;
extraOptions = [ "--home=$HOME/sync" ];
};
}