nixos-config/system/boot.nix

45 lines
986 B
Nix
Raw Normal View History

2022-12-14 01:05:27 -03:00
{ config, pkgs, inputs, ... }: {
console = {
2022-12-21 23:23:30 -03:00
font = "ter-120n";
2023-01-22 18:12:04 -03:00
packages = [ pkgs.terminus_font ];
2022-12-14 01:05:27 -03:00
earlySetup = false;
};
boot = {
consoleLogLevel = 0;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
2023-04-23 23:36:22 -03:00
# Disable password timeout
"luks.options=timeout=0"
"rootflags=x-systemd.device-timeout=0"
2022-12-14 01:05:27 -03:00
];
initrd.systemd.enable = true;
loader = {
# It's still possible to open the bootloader list by pressing any key
# It will just not appear on screen unless a key is pressed
timeout = 0;
systemd-boot = {
enable = true;
# editor = false;
configurationLimit = 50;
2022-12-14 01:05:27 -03:00
};
};
plymouth = {
enable = true;
theme = "red_loader";
themePackages = [
pkgs.plymouth-theme-red
];
};
};
}