lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #29768 from Mic92/networkd

networkd: also load builtin modules

authored by

Jörg Thalheim and committed by
GitHub
12422149 8ed4e672

+5 -1
+5 -1
nixos/modules/system/boot/networkd.nix
··· 650 650 unitFiles = map (name: { 651 651 target = "systemd/network/${name}"; 652 652 source = "${cfg.units.${name}.unit}/${name}"; 653 - }) (attrNames cfg.units); 653 + }) (attrNames cfg.units) ++ 654 + (map (entry: { 655 + target = "systemd/network/${entry}"; 656 + source = "${config.systemd.package}/lib/systemd/network/${entry}"; 657 + }) (attrNames (builtins.readDir "${config.systemd.package}/lib/systemd/network"))); 654 658 in 655 659 656 660 {