flake/nixos/modules/boot/boot.nix

32 lines
691 B
Nix
Raw Normal View History

{
config,
lib,
...
}: let
cfg = config.myFlake.nixos.boot;
in {
options = {
myFlake.nixos = {
boot = {
silentBoot = lib.mkEnableOption "Whether to enable silent boot.";
noLoaderMenu = lib.mkEnableOption "Whether to disable bootloader menu.";
2023-09-19 00:17:43 +00:00
};
};
};
config = {
### cfg.noLoaderMenu
boot.loader.timeout = lib.mkIf cfg.noLoaderMenu 0;
### cfg.silentBoot
boot.consoleLogLevel = lib.mkIf cfg.silentBoot 0;
boot.kernelParams =
lib.mkIf cfg.silentBoot
(["quiet"]
++ lib.optionals config.boot.initrd.systemd.enable [
"systemd.show_status=auto"
"rd.udev.log_level=3"
]);
};
2023-09-19 00:17:43 +00:00
}