mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 06:31:20 +00:00
32 lines
679 B
Nix
32 lines
679 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Bootloader options
|
|
boot = {
|
|
# Enable Plymouth
|
|
plymouth = {
|
|
enable = true;
|
|
font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
|
|
themePackages = with pkgs; [
|
|
(adi1090x-plymouth-themes.override {
|
|
selected_themes = [ "motion" ];
|
|
})
|
|
];
|
|
theme = "motion";
|
|
};
|
|
|
|
# Enable "Silent Boot"
|
|
consoleLogLevel = 0;
|
|
initrd.verbose = false;
|
|
kernelParams = [
|
|
"quiet"
|
|
"splash"
|
|
"boot.shell_on_fail"
|
|
"loglevel=3"
|
|
"rd.systemd.show_status=false"
|
|
"rd.udev.log_level=3"
|
|
"udev.log_priority=3"
|
|
];
|
|
loader.timeout = 0;
|
|
};
|
|
}
|