Commit bef35b3b authored by Anderson Torres's avatar Anderson Torres
Browse files

nixos/tests/sudo.nix: get rid of `with lib`

parent 5f00f1f4
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -2,17 +2,13 @@

let
  password = "helloworld";

in
  import ./make-test-python.nix ({ pkgs, ...} : {
  import ./make-test-python.nix ({ lib, pkgs, ...} : {
    name = "sudo";
    meta = with pkgs.lib.maintainers; {
      maintainers = [ lschuermann ];
    };
    meta.maintainers = with lib.maintainers; [ lschuermann ];

    nodes.machine =
      { lib, ... }:
      with lib;
      {
        users.groups = { foobar = {}; barfoo = {}; baz = { gid = 1337; }; };
        users.users = {