add some missing descriptions

This commit is contained in:
Daniel Barlow 2023-08-07 21:43:12 +01:00
parent 59a41a712b
commit 6d619ee8b5
2 changed files with 37 additions and 4 deletions

View file

@ -1,3 +1,13 @@
## Bridge module
##
## Allows creation of Layer 2 software "bridge" network devices. A
## common use case is to merge together a hardware Ethernet device
## with one or more WLANs so that several local devices appear to be
## on the same network. Create a ``primary`` service to specify the
## new device, and a ``members`` service to add constituent devices
## to it.
{ lib, pkgs, config, ...}:
let
inherit (lib) mkOption types;