nixos/grub: fix documentation for boot.loader.grub.theme (#305663)

Closes #233865. Currently, the documentation for `boot.loader.grub.theme` misleadingly implies that it needs a package for a grub theme instead of a path to a grub theme.
This commit is contained in:
Anomalocaridid
2024-05-02 17:43:24 +00:00
committed by GitHub
parent 4c85d13a3a
commit 52ad64b548
@@ -6,7 +6,6 @@ let
concatMap
concatMapStrings
concatStrings
concatStringsSep
escapeShellArg
flip
foldr
@@ -491,10 +490,10 @@ in
theme = mkOption {
type = types.nullOr types.path;
example = literalExpression "pkgs.nixos-grub2-theme";
example = literalExpression ''"''${pkgs.libsForQt5.breeze-grub}/grub/themes/breeze"'';
default = null;
description = ''
Grub theme to be used.
Path to the grub theme to be used.
'';
};