Unverified Commit 52ad64b5 authored by Anomalocaridid's avatar Anomalocaridid Committed by GitHub
Browse files

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.
parent 4c85d13a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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.
        '';
      };