networkd: also load builtin modules

This commit is contained in:
Joerg Thalheim 2017-09-25 10:43:37 +01:00
parent f8078db863
commit d514dc220e

View File

@ -649,7 +649,11 @@ let
unitFiles = map (name: { unitFiles = map (name: {
target = "systemd/network/${name}"; target = "systemd/network/${name}";
source = "${cfg.units.${name}.unit}/${name}"; source = "${cfg.units.${name}.unit}/${name}";
}) (attrNames cfg.units); }) (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")));
in in
{ {