feat(home): Install phpstorm

This commit is contained in:
punkfairie 2025-02-17 18:20:53 -08:00
parent 1b6dcd5e4f
commit f282402f36
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 17 additions and 0 deletions

View file

@ -14,6 +14,7 @@ in {
calibre = enabled;
floorp = enabled;
pidgin = enabled;
phpstorm = enabled;
rofi = enabled;
vesktop = enabled;
wezterm = enabled;

View file

@ -0,0 +1,16 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.phpstorm;
in {
options.marleyos.programs.phpstorm.enable = lib.mkEnableOption "phpstorm";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
jetbrains.phpstorm
];
};
}