summary refs log tree commit diff
path: root/nixos/modules/system/boot/networkd.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-03-04 06:29:08 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-03-04 06:29:08 +0000
commita5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45 (patch)
tree48ef6035eeb21c889456ce2369626ebd6c4193bf /nixos/modules/system/boot/networkd.nix
parent1aa59bfd3f4108a91cfd79e4d4fd85daab9a83df (diff)
downloadnixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.tar
nixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.tar.gz
nixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.tar.bz2
nixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.tar.lz
nixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.tar.xz
nixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.tar.zst
nixpkgs-a5dcde1a6fb3d5d1b8c29a46fd5926de1640ab45.zip
Revert "networkd: also load builtin modules"
This reverts commit d514dc220e9fad27a46ef329360bb8db2cdf22ea.

breaks unpredicable network interfaces: https://github.com/NixOS/nixpkgs/pull/29768#issuecomment-370172863
Diffstat (limited to 'nixos/modules/system/boot/networkd.nix')
-rw-r--r--nixos/modules/system/boot/networkd.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix
index 7bf7a51a241..eea10613ea5 100644
--- a/nixos/modules/system/boot/networkd.nix
+++ b/nixos/modules/system/boot/networkd.nix
@@ -650,11 +650,7 @@ let
   unitFiles = map (name: {
     target = "systemd/network/${name}";
     source = "${cfg.units.${name}.unit}/${name}";
-  }) (attrNames cfg.units) ++
-  (map (entry: {
-    target = "systemd/network/${entry}";
-    source = "${config.systemd.package}/lib/systemd/network/${entry}";
-  }) (attrNames (builtins.readDir "${config.systemd.package}/lib/systemd/network")));
+  }) (attrNames cfg.units);
 in
 
 {