17 lines
418 B
Nix
17 lines
418 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [ pkgs.adi1090x-plymouth-themes ];
|
|
boot = {
|
|
kernelParams = [
|
|
"quiet" # shut up kernel output prior to prompts
|
|
];
|
|
plymouth = {
|
|
enable = true;
|
|
theme = lib.mkForce "hexagon_hud";
|
|
themePackages = [
|
|
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "motion" ]; })
|
|
];
|
|
};
|
|
consoleLogLevel = 0;
|
|
};
|
|
}
|