mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
update max_execution_time to recommended 600
This commit is contained in:
parent
dc83f9dcec
commit
32bf187008
1 changed files with 4 additions and 1 deletions
|
@ -50,7 +50,10 @@ in
|
|||
phpPackage = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = pkgs.php74.buildEnv {
|
||||
extraConfig = "date.timezone=${config.time.timeZone}";
|
||||
extraConfig = ''
|
||||
max_execution_time = 600
|
||||
date.timezone = ${config.time.timeZone}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue