Merge pull request #29768 from Mic92/networkd
networkd: also load builtin modules
This commit is contained in:
commit
12422149a7
|
@ -650,7 +650,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
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user