summary refs log tree commit diff
path: root/nixos/tests/apfs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/apfs.nix')
-rw-r--r--nixos/tests/apfs.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/apfs.nix b/nixos/tests/apfs.nix
index 9fe689951c7..15ed5aa7f57 100644
--- a/nixos/tests/apfs.nix
+++ b/nixos/tests/apfs.nix
@@ -1,8 +1,8 @@
-import ./make-test-python.nix ({ pkgs, ... }: {
+{ lib, ... }: {
   name = "apfs";
-  meta.maintainers = with pkgs.lib.maintainers; [ Luflosi ];
+  meta.maintainers = with lib.maintainers; [ Luflosi ];
 
-  nodes.machine = { pkgs, ... }: {
+  nodes.machine = {
     virtualisation.emptyDiskImages = [ 1024 ];
 
     boot.supportedFilesystems = [ "apfs" ];
@@ -62,4 +62,4 @@ import ./make-test-python.nix ({ pkgs, ... }: {
           "apfsck /dev/vdb",
       )
   '';
-})
+}