summary refs log tree commit diff
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-12-10 19:28:45 -0500
committerShea Levy <shea@shealevy.com>2014-12-10 19:28:45 -0500
commit10751129d09b702835a55478dbd0bd651eade178 (patch)
tree2aa450275a7418733f77b40f2ca8be732f427fd6
parent562fdc2050b84e8ec34fa464416dc085dc7022d9 (diff)
downloadnixpkgs-10751129d09b702835a55478dbd0bd651eade178.tar
nixpkgs-10751129d09b702835a55478dbd0bd651eade178.tar.gz
nixpkgs-10751129d09b702835a55478dbd0bd651eade178.tar.bz2
nixpkgs-10751129d09b702835a55478dbd0bd651eade178.tar.lz
nixpkgs-10751129d09b702835a55478dbd0bd651eade178.tar.xz
nixpkgs-10751129d09b702835a55478dbd0bd651eade178.tar.zst
nixpkgs-10751129d09b702835a55478dbd0bd651eade178.zip
Don't require forcing utils to get to lib
-rw-r--r--nixos/modules/tasks/network-interfaces-scripted.nix2
-rw-r--r--nixos/modules/tasks/network-interfaces-systemd.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix
index 316e2e33eec..310527667d7 100644
--- a/nixos/modules/tasks/network-interfaces-scripted.nix
+++ b/nixos/modules/tasks/network-interfaces-scripted.nix
@@ -1,7 +1,7 @@
 { config, lib, pkgs, utils, ... }:
 
-with lib;
 with utils;
+with lib;
 
 let
 
diff --git a/nixos/modules/tasks/network-interfaces-systemd.nix b/nixos/modules/tasks/network-interfaces-systemd.nix
index ee3efbbc9ff..10185c7709b 100644
--- a/nixos/modules/tasks/network-interfaces-systemd.nix
+++ b/nixos/modules/tasks/network-interfaces-systemd.nix
@@ -1,7 +1,7 @@
 { config, lib, pkgs, utils, ... }:
 
-with lib;
 with utils;
+with lib;
 
 let