From 66f9d60dd75fa244fc3f801c65b7d59a7a7b861a Mon Sep 17 00:00:00 2001 From: Yaya Date: Mon, 8 Jul 2024 11:36:50 +0200 Subject: [PATCH] nixosTests.gitlab: add git package --- nixos/tests/gitlab.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix index 52fe588930df..a099a8201ae5 100644 --- a/nixos/tests/gitlab.nix +++ b/nixos/tests/gitlab.nix @@ -34,6 +34,8 @@ in { gitlab = { ... }: { imports = [ common/user-account.nix ]; + environment.systemPackages = with pkgs; [ git ]; + virtualisation.memorySize = 6144; virtualisation.cores = 4; virtualisation.useNixStoreImage = true;