From 9f34f195e1bd8a96c58743ce526ebd98a9df5342 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 30 Apr 2023 11:26:17 -0300 Subject: [PATCH] nixos/tests/libreddit.nix: get rid of `with lib` --- nixos/tests/libreddit.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/tests/libreddit.nix b/nixos/tests/libreddit.nix index 82a44cb4e9cb..ecf347b9e12e 100644 --- a/nixos/tests/libreddit.nix +++ b/nixos/tests/libreddit.nix @@ -1,10 +1,8 @@ import ./make-test-python.nix ({ lib, ... }: -with lib; - { name = "libreddit"; - meta.maintainers = with maintainers; [ fab ]; + meta.maintainers = with lib.maintainers; [ fab ]; nodes.machine = { services.libreddit.enable = true;