about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-29 22:17:05 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-05-12 22:29:26 -0300
commitf872db7aed7bec423dbe332cc2946f2db5bbc57f (patch)
tree20bd3294ba9777afaf6e52140f41ae9282e4b61e
parent714180048b5cf2ea0baa4fbc1632669882f1da0d (diff)
nixos/tests/ulogd.nix: get rid of `with lib`
-rw-r--r--nixos/tests/ulogd.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/tests/ulogd.nix b/nixos/tests/ulogd.nix
index ce52d855ffc28..d351fdae79836 100644
--- a/nixos/tests/ulogd.nix
+++ b/nixos/tests/ulogd.nix
@@ -1,9 +1,7 @@
 import ./make-test-python.nix ({ pkgs, lib, ... }: {
   name = "ulogd";
 
-  meta = with lib; {
-    maintainers = with maintainers; [ p-h ];
-  };
+  meta.maintainers = with lib.maintainers; [ p-h ];
 
   nodes.machine = { ... }: {
     networking.firewall.enable = false;