Skip to content

Commit

Permalink
fix(devenv): Set memory limit in devenv
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Oct 5, 2024
1 parent 01acabe commit 3f243b0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
languages.php.version = "8.3";
languages.php.extensions = [ "apcu" "intl" "opcache" "zip" "redis" "pdo_pgsql" "sysvsem" "xdebug" ];
languages.php.disableExtensions = [ "soap" ];
languages.php.ini = ''
date.timezone = "Asia/Taipei"
memory_limit = "512M"
'';

languages.javascript.enable = true;
languages.javascript.corepack.enable = true;
Expand Down

0 comments on commit 3f243b0

Please sign in to comment.