NixOS/home/modules/syncthing.nix

13 lines
187 B
Nix
Raw Normal View History

2024-06-12 09:54:11 +07:00
{ lib, config, ... }:
let
cfg = config.profile.syncthing;
in
{
config = lib.mkIf cfg.enable {
services.syncthing = {
enable = true;
tray.enable = false;
};
};
}