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

Changed files
-1
nixos
tests
-1
nixos/tests/hardened.nix
···
nodes.machine =
{ lib, pkgs, config, ... }:
-
with lib;
{ users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; };
users.users.sybil = { isNormalUser = true; group = "wheel"; };
imports = [ ../modules/profiles/hardened.nix ];
···
nodes.machine =
{ lib, pkgs, config, ... }:
{ users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; };
users.users.sybil = { isNormalUser = true; group = "wheel"; };
imports = [ ../modules/profiles/hardened.nix ];