about summary refs log tree commit diff
path: root/nixos/tests/osquery.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-07-28 22:27:17 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-01 10:12:12 +0000
commitc5ffb694d9789688ae52af1fa9d528607be1e8e1 (patch)
tree9f3c032d336e885fbd0892705bd2e5ab8b232987 /nixos/tests/osquery.nix
parent62f6f01085a36111d92ec7617c6958f67de9235a (diff)
nixos/tests/osquery.nix: remove overuses of `with`
Diffstat (limited to 'nixos/tests/osquery.nix')
-rw-r--r--nixos/tests/osquery.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/nixos/tests/osquery.nix b/nixos/tests/osquery.nix
index dc55fa82f8d19..9aa9820e50c52 100644
--- a/nixos/tests/osquery.nix
+++ b/nixos/tests/osquery.nix
@@ -1,7 +1,5 @@
 import ./make-test-python.nix ({ lib, pkgs, ... }:
 
-with lib;
-
 let
   config_refresh = "10";
   nullvalue = "NULL";
@@ -9,9 +7,7 @@ let
 in
 {
   name = "osquery";
-  meta = with maintainers; {
-    maintainers = [ znewman01 lewo ];
-  };
+  meta.maintainers = with lib.maintainers; [ znewman01 lewo ];
 
   nodes.machine = { config, pkgs, ... }: {
     services.osquery = {