nixos: add myFlake.nixos.boot.{silentboot,noLoaderMenu}
This commit is contained in:
parent
f7287b37fe
commit
65a8502ecb
3 changed files with 46 additions and 15 deletions
|
@ -170,7 +170,6 @@
|
|||
# OS
|
||||
./nixos/presets/desktop.nix
|
||||
./nixos/presets/core/zram-generator.nix
|
||||
./nixos/presets/core/boot/no-bootloader-menu.nix
|
||||
./nixos/presets/desktop/gaming.nix
|
||||
./nixos/presets/desktop/virtualbox.nix
|
||||
./nixos/presets/desktop/wayland.nix
|
||||
|
@ -195,6 +194,7 @@
|
|||
];
|
||||
|
||||
### Options
|
||||
myFlake.nixos.boot.noLoaderMenu = true;
|
||||
myFlake.nixos.networking.dns = "alidns";
|
||||
}
|
||||
];
|
||||
|
|
|
@ -1,7 +1,42 @@
|
|||
{lib, ...}: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
myFlake.nixos = {
|
||||
boot = {
|
||||
consoleLogLevel = lib.mkDefault 3;
|
||||
loader = {
|
||||
silentBoot = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
example = true;
|
||||
description = "Enable silent boot";
|
||||
};
|
||||
noLoaderMenu = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
example = true;
|
||||
description = "Disable bootloader menu";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
### myFlake.nixos.boot.noLoaderMenu
|
||||
config.boot.loader.timeout = lib.mkIf config.myFlake.nixos.boot.noLoaderMenu 0;
|
||||
|
||||
### myFlake.nixos.boot.silentBoot
|
||||
config.boot.consoleLogLevel = lib.mkIf config.myFlake.nixos.boot.silentBoot 0;
|
||||
config.boot.kernelParams =
|
||||
lib.mkIf config.myFlake.nixos.boot.silentBoot
|
||||
(["quiet"]
|
||||
++ lib.optionals config.boot.initrd.systemd.enable [
|
||||
"systemd.show_status=auto"
|
||||
"rd.udev.log_level=3"
|
||||
]);
|
||||
|
||||
### Misc
|
||||
config.boot.loader = {
|
||||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot = {
|
||||
enable = lib.mkDefault true; # mkDefault for Lanzaboote
|
||||
|
@ -11,5 +46,4 @@
|
|||
#memtest86.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
{...}: {
|
||||
boot.loader.timeout = 0;
|
||||
}
|
Loading…
Reference in a new issue