diff options
author | Felix Buehler | 2024-08-24 22:05:55 +0200 |
---|---|---|
committer | Felix Buehler | 2024-08-30 23:01:46 +0200 |
commit | 5f816eeb7e54a46d88d0e596882db63fc45effbc (patch) | |
tree | 891078649c8cfde76cc951423890a5f19b0fe2a7 /nixos | |
parent | dcb2e4eba4d92af6d72eb3c22ccdb12d0ed8e9df (diff) |
nixos.tests.audiobookshelf: remove `with lib;`
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/tests/audiobookshelf.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nixos/tests/audiobookshelf.nix b/nixos/tests/audiobookshelf.nix index 64bd415160ee..ccd830eb28da 100644 --- a/nixos/tests/audiobookshelf.nix +++ b/nixos/tests/audiobookshelf.nix @@ -1,10 +1,7 @@ import ./make-test-python.nix ({ lib, ... }: - -with lib; - { name = "audiobookshelf"; - meta.maintainers = with maintainers; [ wietsedv ]; + meta.maintainers = with lib.maintainers; [ wietsedv ]; nodes.machine = { pkgs, ... }: |