NixOS-Configs/hosts/common/boot.nix
2026-05-05 14:20:58 -05:00

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;
};
}