24 lines
511 B
Nix
24 lines
511 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
config = {
|
|
# Bootloader options
|
|
boot.initrd.systemd.enable = true;
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Boot splash instead of log messages
|
|
boot = {
|
|
plymouth.enable = true;
|
|
# Enable "Silent boot"
|
|
consoleLogLevel = 3;
|
|
initrd.verbose = false;
|
|
kernelParams = [
|
|
"quiet"
|
|
"udev.log_level=3"
|
|
"systemd.show_status=auto"
|
|
];
|
|
loader.timeout = 1;
|
|
};
|
|
};
|
|
} |