Files
nixos-config/nixos/modules/boot.nix
T
2025-12-23 13:48:12 +03:00

34 lines
674 B
Nix

{ config, pkgs, lib, ... }:
{
boot = {
plymouth = {
enable = true;
theme = "double";
themePackages = with pkgs;
[
(adi1090x-plymouth-themes.override {
selected_themes = [ "double" ];
})
];
};
consoleLogLevel = 3;
initrd.verbose = false;
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
"kvm.enable_virt_at_load=0"
];
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = 0;
};
};
}