nixos/modules/home/apps/jetbrainsToolbox/default.nix

16 lines
339 B
Nix
Raw Normal View History

2024-05-25 00:51:55 +02:00
{ config, pkgs, lib, ... }:
with lib;
let
2024-05-27 22:40:30 +02:00
cfg = config.modules.home.apps.jetbrainsToolbox;
2024-05-25 00:51:55 +02:00
in
{
2024-05-27 22:40:30 +02:00
options.modules.home.apps.jetbrainsToolbox = {
2024-05-25 00:51:55 +02:00
enable = mkEnableOption ''
Enable jetbrainsToolbox with my custom configurations
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [jetbrains-toolbox];
};
}