summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/tests/boot-stage1.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nixos/tests/boot-stage1.nix b/nixos/tests/boot-stage1.nix
index 311acd7bb1c..ad253d23c54 100644
--- a/nixos/tests/boot-stage1.nix
+++ b/nixos/tests/boot-stage1.nix
@@ -1,4 +1,4 @@
-import ./make-test.nix {
+import ./make-test.nix ({ pkgs, ... }: {
   name = "boot-stage1";
 
   machine = { config, pkgs, lib, ... }: {
@@ -150,4 +150,6 @@ import ./make-test.nix {
     $machine->succeed('pgrep -a -f \'^@canary3$\''');
     $machine->succeed('pgrep -a -f \'^kcanary$\''');
   '';
-}
+
+  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ aszlig ];
+})