nixos/tests/gitea: increase memory for VM

Otherwise, the relevant processes are stopped by the kernel's OOM
killer[1].

[1] https://github.com/NixOS/nixpkgs/pull/105698#issuecomment-737257293
This commit is contained in:
Maximilian Bosch 2020-12-02 15:18:47 +01:00
parent 16dd1c902c
commit affb72eccd
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -14,6 +14,7 @@ let
nodes = {
server = { config, pkgs, ... }: {
virtualisation.memorySize = 2048;
services.gitea = {
enable = true;
database = { inherit type; };