0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/doc: fix some options

This commit is contained in:
Naïm Favier 2022-11-03 15:52:19 +01:00 committed by pennae
parent 4cc7973ae6
commit 0ff3b35356
31 changed files with 67 additions and 60 deletions

View file

@ -13,9 +13,8 @@ in
package = mkOption {
type = types.package;
example = literalExpression "pkgs.uptime-kuma";
default = pkgs.uptime-kuma;
defaultText = "pkgs.uptime-kuma";
defaultText = literalExpression "pkgs.uptime-kuma";
description = lib.mdDoc "Uptime Kuma package to use.";
};