home-manager: exclude home-manager options docs

This commit is contained in:
Tobias Happ 2022-10-26 11:22:08 +02:00
parent f71e4d96ff
commit 763c7d6b06

View file

@ -1,4 +1,4 @@
# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
{ config, lib, pkgs, home-manager-path, ... }:
@ -51,6 +51,8 @@ in
config = mkOption {
type = types.nullOr hmModule;
default = null;
# Prevent the entire submodule being included in the documentation.
visible = "shallow";
description = "Home Manager configuration.";
};