nixos/tests/hibernate.nix: get rid of with lib
This commit is contained in:
parent
3002c44f48
commit
d1a2a4cbcc
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue