Update configuration files

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-10-10 19:02:42 +01:00
parent 96ac446aa5
commit c3113b0eec
10 changed files with 25 additions and 7 deletions

View file

@ -1 +1 @@
use flake
use flake .

1
drupal/.gitignore vendored
View file

@ -1,3 +1,4 @@
/*.sql*
/.direnv/
/.editorconfig
/.env

View file

@ -25,7 +25,12 @@
}:
let
php = pkgs.php83;
php = pkgs.php83.buildEnv {
extraConfig = ''
memory_limit = 128M
'';
};
phpPackages = pkgs.php83Packages;
databasePort = 3306;