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

16 lines
335 B
Nix
Raw Normal View History

2024-05-25 00:51:55 +02:00
{ 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];
};
}