Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cdf9b626c444
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8e639f142f61
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 25, 2019

  1. plymouth: Add extra config field

    Signed-off-by: Mathieu A.-Tetreault <alexandretm@amotus.ca>
    Mathieu A.-Tetreault committed Oct 25, 2019
    Copy the full SHA
    054ceb8 View commit details

Commits on Nov 9, 2019

  1. Merge pull request #71986 from mtetreault/mte/plymouth-improvements

    plymouth: Add extra config field
    ttuegel authored Nov 9, 2019
    Copy the full SHA
    8e639f1 View commit details
Showing with 10 additions and 0 deletions.
  1. +10 −0 nixos/modules/system/boot/plymouth.nix
10 changes: 10 additions & 0 deletions nixos/modules/system/boot/plymouth.nix
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@ let
[Daemon]
ShowDelay=0
Theme=${cfg.theme}
${cfg.extraConfig}
'';

in
@@ -65,6 +66,15 @@ in
'';
};

extraConfig = mkOption {
type = types.lines;
default = "";
description = ''
Literal string to append to <literal>configFile</literal>
and the config file generated by the plymouth module.
'';
};

};

};