1{ lib, config, ... }: 2let 3 cfg = config.py.services.syncthing; 4in 5{ 6 options.py.services.syncthing.enable = lib.mkEnableOption "Syncthing"; 7 config.services.syncthing = lib.mkIf cfg.enable { 8 enable = true; 9 tray.enable = true; 10 }; 11}