From aa3cd9c9552880a7ce9e456631218b5e97a45a44 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 18 Dec 2023 11:35:09 +0300 Subject: [PATCH] nixos/tests/gitlab: download even more RAM Also remove the 32-bit conditional as it already fails on 4GB. --- nixos/tests/gitlab.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix index 88cd774f815a..8d3126425311 100644 --- a/nixos/tests/gitlab.nix +++ b/nixos/tests/gitlab.nix @@ -34,7 +34,7 @@ in { gitlab = { ... }: { imports = [ common/user-account.nix ]; - virtualisation.memorySize = if pkgs.stdenv.is64bit then 4096 else 2047; + virtualisation.memorySize = 6144; virtualisation.cores = 4; virtualisation.useNixStoreImage = true; virtualisation.writableStore = false;