diff --git a/flake.nix b/flake.nix
index 2671326cbb97a92884256521208eea2129bcf58d..f4ef6a14c54816c555c6121a034d6d003670a859 100644
--- a/flake.nix
+++ b/flake.nix
@@ -106,18 +106,20 @@
         gitlab = let
           ciJobToken = builtins.getEnv "CI_JOB_TOKEN";
           script-run-ci-tests = pkgs'.callPackage ./nix/scripts/run-ci-tests.nix {};
+          script-run-web-tests = pkgs'.callPackage ./nix/scripts/run-web-tests.nix {};
 
           gitlabPackages = with pkgs';[
             nodejs_21
             git
             script-run-ci-tests
+            script-run-web-tests
           ];
         in
           pkgs'.mkShell {
             nativeBuildInputs = gitlabPackages;
 
             shellHook = ''
-                if [ -z "''${CI_JO B_TOKEN}" ]; then
+                if [ -z "''${CI_JOB_TOKEN}" ]; then
                    exit 1
                 fi