nixos/modules/home/apps/jetbrainsToolbox/default.nix
2024-05-27 19:45:14 +02:00

16 lines
No EOL
335 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.desktop.jetbrainsToolbox;
in
{
options.modules.desktop.jetbrainsToolbox = {
enable = mkEnableOption ''
Enable jetbrainsToolbox with my custom configurations
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [jetbrains-toolbox];
};
}