nixos/tests/osquery.nix: remove overuses of with
This commit is contained in:
parent
62f6f01085
commit
c5ffb694d9
1 changed files with 1 additions and 5 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue