dot.nix/hosts/global/common/plymouth.nix
Chris Toph 3523b82392 Configuration Cleanup
- Removed inaccurate comments
- Refactored browsers to independent nixes
- Small code changes for clarity
2025-05-29 15:25:49 -04:00

18 lines
455 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 "motion";
themePackages = [
# TODO: Make customizable by user
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "motion" ]; })
];
};
consoleLogLevel = 0;
};
}