From 75a76768fe9d81f38f3640862805c2d9086445f4 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sat, 29 Apr 2023 22:17:05 -0300 Subject: [PATCH] nixos/tests/xautolock.nix: get rid of `with lib` --- nixos/tests/xautolock.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/tests/xautolock.nix b/nixos/tests/xautolock.nix index 529567e07971..cf81c4a1cf05 100644 --- a/nixos/tests/xautolock.nix +++ b/nixos/tests/xautolock.nix @@ -1,10 +1,8 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: -with lib; - { name = "xautolock"; - meta.maintainers = with pkgs.lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { imports = [ ./common/x11.nix ./common/user-account.nix ];