about summary refs log tree commit diff
path: root/nixos/tests/gitlab.nix
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-12-18 11:35:09 +0300
committerK900 <me@0upti.me>2023-12-18 11:35:09 +0300
commitaa3cd9c9552880a7ce9e456631218b5e97a45a44 (patch)
tree8e6cf52a4f4a7dd3a334e0b4131384756db94743 /nixos/tests/gitlab.nix
parent4ea1ee20d72a1e1d0d0302c6b580ca2a5cd4dc9e (diff)
nixos/tests/gitlab: download even more RAM
Also remove the 32-bit conditional as it already fails on 4GB.
Diffstat (limited to 'nixos/tests/gitlab.nix')
-rw-r--r--nixos/tests/gitlab.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix
index 88cd774f815a5..8d31264253119 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;