gitlab: fix VM tests

This commit is contained in:
Gabriel Nützi
2025-12-20 12:24:54 +01:00
parent aa1d90834b
commit c9e5afc11b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -643,7 +643,7 @@ in
gitdaemon = runTest ./gitdaemon.nix;
gitea = handleTest ./gitea.nix { giteaPackage = pkgs.gitea; };
github-runner = runTest ./github-runner.nix;
gitlab = import ./gitlab/default.nix {
gitlab = import ./gitlab {
inherit runTest;
};
gitolite = runTest ./gitolite.nix;
+2 -2
View File
@@ -12,7 +12,7 @@
{ pkgs, lib, ... }:
let
inherit (import ./ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey;
inherit (import ../ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey;
initialRootPassword = "notproduction";
rootProjectId = "2";
@@ -37,7 +37,7 @@ in
gitlab =
{ ... }:
{
imports = [ common/user-account.nix ];
imports = [ ../common/user-account.nix ];
environment.systemPackages = with pkgs; [ git ];