{ config, lib, ... }: let cfg = config.sils.nextcloud; in { options.sils.nextcloud.enable = lib.mkEnableOption "the nextcloud desktop client"; config = lib.mkIf cfg.enable { services.nextcloud-client = { enable = true; startInBackground = true; }; }; }