feat(home): Install phpstorm
This commit is contained in:
parent
1b6dcd5e4f
commit
f282402f36
2 changed files with 17 additions and 0 deletions
|
@ -14,6 +14,7 @@ in {
|
|||
calibre = enabled;
|
||||
floorp = enabled;
|
||||
pidgin = enabled;
|
||||
phpstorm = enabled;
|
||||
rofi = enabled;
|
||||
vesktop = enabled;
|
||||
wezterm = enabled;
|
||||
|
|
16
modules/home/programs/gui/phpstorm/default.nix
Normal file
16
modules/home/programs/gui/phpstorm/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue