2024-05-28 10:12:33 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.modules.home.apps.jetbrainsToolbox;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.modules.home.apps.jetbrainsToolbox = {
|
|
|
|
enable = mkEnableOption ''
|
|
|
|
Enable jetbrainsToolbox with my custom configurations
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
2024-08-15 16:31:30 +02:00
|
|
|
home.packages = with pkgs; [jetbrains-toolbox graalvm-ce];
|
2024-05-28 10:12:33 +02:00
|
|
|
};
|
|
|
|
}
|