mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 13:29:32 +01:00
added more ram for php
This commit is contained in:
parent
68d2b4eb95
commit
c3ea234b73
|
@ -52,6 +52,7 @@
|
||||||
default_locale = "fr_FR";
|
default_locale = "fr_FR";
|
||||||
default_language = "fr";
|
default_language = "fr";
|
||||||
default_timezone = "Europe/Paris";
|
default_timezone = "Europe/Paris";
|
||||||
|
"memories.exiftool" = "${lib.getExe pkgs.exiftool}";
|
||||||
};
|
};
|
||||||
|
|
||||||
phpExtraExtensions = all: [
|
phpExtraExtensions = all: [
|
||||||
|
@ -59,6 +60,7 @@
|
||||||
all.redis
|
all.redis
|
||||||
all.bz2
|
all.bz2
|
||||||
];
|
];
|
||||||
|
|
||||||
phpOptions."opcache.interned_strings_buffer" = "23";
|
phpOptions."opcache.interned_strings_buffer" = "23";
|
||||||
extraApps = {
|
extraApps = {
|
||||||
inherit (config.services.nextcloud.package.packages.apps)
|
inherit (config.services.nextcloud.package.packages.apps)
|
||||||
|
@ -91,6 +93,13 @@
|
||||||
extraAppsEnable = true;
|
extraAppsEnable = true;
|
||||||
appstoreEnable = true; # why i would want appstore to be disabled ???
|
appstoreEnable = true; # why i would want appstore to be disabled ???
|
||||||
autoUpdateApps.enable = true;
|
autoUpdateApps.enable = true;
|
||||||
extraOptions."memories.exiftool" = "${lib.getExe pkgs.exiftool}";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages =
|
||||||
|
let
|
||||||
|
php = pkgs.php.buildEnv { extraConfig = "memory_limit = 2G"; };
|
||||||
|
in
|
||||||
|
[
|
||||||
|
php
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue