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
|
# OS
|
||||||
./nixos/presets/desktop.nix
|
./nixos/presets/desktop.nix
|
||||||
./nixos/presets/core/zram-generator.nix
|
./nixos/presets/core/zram-generator.nix
|
||||||
./nixos/presets/core/boot/no-bootloader-menu.nix
|
|
||||||
./nixos/presets/desktop/gaming.nix
|
./nixos/presets/desktop/gaming.nix
|
||||||
./nixos/presets/desktop/virtualbox.nix
|
./nixos/presets/desktop/virtualbox.nix
|
||||||
./nixos/presets/desktop/wayland.nix
|
./nixos/presets/desktop/wayland.nix
|
||||||
|
@ -195,6 +194,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
myFlake.nixos.boot.noLoaderMenu = true;
|
||||||
myFlake.nixos.networking.dns = "alidns";
|
myFlake.nixos.networking.dns = "alidns";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,15 +1,49 @@
|
||||||
{lib, ...}: {
|
{
|
||||||
boot = {
|
config,
|
||||||
consoleLogLevel = lib.mkDefault 3;
|
lib,
|
||||||
loader = {
|
...
|
||||||
efi.canTouchEfiVariables = true;
|
}: {
|
||||||
systemd-boot = {
|
options = {
|
||||||
enable = lib.mkDefault true; # mkDefault for Lanzaboote
|
myFlake.nixos = {
|
||||||
editor = false; # Disabled for security
|
boot = {
|
||||||
### Utilities
|
silentBoot = lib.mkOption {
|
||||||
#netbootxyz.enable = true;
|
type = lib.types.bool;
|
||||||
#memtest86.enable = true;
|
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
|
||||||
|
editor = false; # Disabled for security
|
||||||
|
### Utilities
|
||||||
|
#netbootxyz.enable = true;
|
||||||
|
#memtest86.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
{...}: {
|
|
||||||
boot.loader.timeout = 0;
|
|
||||||
}
|
|
Loading…
Reference in a new issue