nixos/tests/hibernate.nix: get rid of with lib

This commit is contained in:
Anderson Torres 2023-04-29 22:17:05 -03:00
parent 3002c44f48
commit d1a2a4cbcc

View File

@ -46,14 +46,14 @@ in makeTest {
nodes = {
# System configuration used for installing the installedConfig from above.
machine = { config, lib, pkgs, ... }: with lib; {
machine = { config, lib, pkgs, ... }: {
imports = [
../modules/profiles/installation-device.nix
../modules/profiles/base.nix
];
nix.settings = {
substituters = mkForce [];
substituters = lib.mkForce [];
hashed-mirrors = null;
connect-timeout = 1;
};