about summary refs log tree commit diff
path: root/nixos/tests/hibernate.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-29 22:17:05 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-05-12 22:29:26 -0300
commitd1a2a4cbccd45e7ff3b32c0f073eb04d42651329 (patch)
treeaf9d8e21790630ec6f8179f01200601ab3fb1151 /nixos/tests/hibernate.nix
parent3002c44f4811f0c32ebb82251c41e3917dedf9fb (diff)
nixos/tests/hibernate.nix: get rid of `with lib`
Diffstat (limited to 'nixos/tests/hibernate.nix')
-rw-r--r--nixos/tests/hibernate.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/hibernate.nix b/nixos/tests/hibernate.nix
index 4d0b53e95b32a..24b4ed382c126 100644
--- a/nixos/tests/hibernate.nix
+++ b/nixos/tests/hibernate.nix
@@ -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;
       };