mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #74624 from Ma27/networkd-units-internal
nixos/networkd: mark `units` option as internal
This commit is contained in:
commit
0f10495eb9
1 changed files with 2 additions and 1 deletions
|
@ -972,9 +972,10 @@ in
|
|||
systemd.network.units = mkOption {
|
||||
description = "Definition of networkd units.";
|
||||
default = {};
|
||||
internal = true;
|
||||
type = with types; attrsOf (submodule (
|
||||
{ name, config, ... }:
|
||||
{ options = concreteUnitOptions;
|
||||
{ options = mapAttrs (_: x: x // { internal = true; }) concreteUnitOptions;
|
||||
config = {
|
||||
unit = mkDefault (makeUnit name config);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue