{ lib, pkgs, config, ... }: with lib; let cfg = config.user.ide.jetbrains.dataspell; in { options.user.ide.jetbrains.dataspell = { enable = mkEnableOption "JetBrains options"; }; config = mkIf cfg.enable { home.packages = with pkgs.unstable; [ jetbrains.dataspell ]; }; }