nixos/networkd: fix systemd.network.netdevs.<name>.vlanConfig.Id example
This is passed as integer, not string. Closes https://github.com/NixOS/nixpkgs/issues/91172.
This commit is contained in:
parent
1ceecdd109
commit
9e5f550af9
|
@ -488,7 +488,7 @@ let
|
|||
|
||||
vlanConfig = mkOption {
|
||||
default = {};
|
||||
example = { Id = "4"; };
|
||||
example = { Id = 4; };
|
||||
type = types.addCheck (types.attrsOf unitOption) checkVlan;
|
||||
description = ''
|
||||
Each attribute in this set specifies an option in the
|
||||
|
|
Loading…
Reference in New Issue