23 lines
No EOL
446 B
Nix
23 lines
No EOL
446 B
Nix
{ config, lib, pkgs, ... }: {
|
|
# Common boot configuration
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
timeout = 3;
|
|
};
|
|
|
|
# Plymouth for boot splash
|
|
plymouth.enable = true;
|
|
|
|
# Kernel parameters
|
|
kernelParams = ["quiet" "splash"];
|
|
|
|
# Console settings
|
|
consoleLogLevel = 0;
|
|
initrd.verbose = false;
|
|
};
|
|
} |