Merge pull request #283240 from Aleksanaa/nixos/plymouth

nixos/plymouth: improving documentation of logo option
This commit is contained in:
Sandro 2024-03-24 21:53:08 +01:00 committed by GitHub
commit c51e10cbd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,6 @@ with lib;
let
inherit (pkgs) nixos-icons;
plymouth = pkgs.plymouth.override {
systemd = config.boot.initrd.systemd.package;
};
@ -97,8 +96,8 @@ in
logo = mkOption {
type = types.path;
# Dimensions are 48x48 to match GDM logo
default = "${nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png";
defaultText = literalExpression ''"''${nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png"'';
default = "${pkgs.nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png";
defaultText = literalExpression ''"''${pkgs.nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png"'';
example = literalExpression ''
pkgs.fetchurl {
url = "https://nixos.org/logo/nixos-hires.png";
@ -107,6 +106,7 @@ in
'';
description = lib.mdDoc ''
Logo which is displayed on the splash screen.
Currently supports PNG file format only.
'';
};