mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +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 {
|
phpPackage = lib.mkOption {
|
||||||
type = lib.types.package;
|
type = lib.types.package;
|
||||||
default = pkgs.php74.buildEnv {
|
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