nixos/tests/nextcloud: use lib instead of pkgs.lib wherever trivial

This commit is contained in:
networkException
2024-12-22 21:36:32 +01:00
parent 2ce1e84103
commit 18de1c264e
5 changed files with 12 additions and 12 deletions

View File

@@ -8,10 +8,10 @@
with import ../../lib/testing-python.nix { inherit system pkgs; };
runTest (
{ config, ... }:
{ config, lib, ... }:
{
inherit name;
meta = with pkgs.lib.maintainers; {
meta = with lib.maintainers; {
maintainers = [ eqyiel ];
};