From 8e75a28e4e56605c0ff5734dc8ae6e411a10ca3b Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 24 Aug 2024 22:34:51 +0800 Subject: [PATCH] nixos/pantheon: Increase memorySize https://logs.ofborg.org/?key=nixos/nixpkgs.336934&attempt_id=24f89861-72eb-417f-94bf-93cea578a1f1 --- nixos/tests/pantheon.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/pantheon.nix b/nixos/tests/pantheon.nix index 1da628601bd2..0387a0359ab0 100644 --- a/nixos/tests/pantheon.nix +++ b/nixos/tests/pantheon.nix @@ -10,6 +10,9 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : { imports = [ ./common/user-account.nix ]; + # Workaround ".gala-wrapped invoked oom-killer" + virtualisation.memorySize = 2047; + services.xserver.enable = true; services.xserver.desktopManager.pantheon.enable = true;