lol

nixos/meta: Fix maintainers example

`maintainers.all` does not exist, and should not exist.

Neither does `alice`, but she's a metavariable.

+1 -1
+1 -1
nixos/modules/misc/meta.nix
··· 49 49 type = listOfMaintainers; 50 50 internal = true; 51 51 default = [ ]; 52 - example = lib.literalExpression ''[ lib.maintainers.all ]''; 52 + example = lib.literalExpression ''[ lib.maintainers.alice ]''; 53 53 description = '' 54 54 List of maintainers of each module. This option should be defined at 55 55 most once per module.