13 lines
233 B
Nix
13 lines
233 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.marleyos.programs.phpstorm;
|
|
in {
|
|
options.marleyos.programs.phpstorm.enable = lib.mkEnableOption "phpstorm";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
homebrew.casks = ["phpstorm"];
|
|
};
|
|
}
|