nixos/home/common/optional/syncthing.nix

12 lines
125 B
Nix

{ config, ... }:
let
user = config.home.username;
in
{
services = {
syncthing = {
enable = true;
};
};
}