Files
nixos/system/boot.nix
T
2025-12-26 11:16:08 -06:00

30 lines
553 B
Nix

{pkgs, ...}: {
boot = {
consoleLogLevel = 3;
initrd.verbose = false;
loader = {
timeout = 0;
systemd-boot = {
enable = true;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
initrd = {
systemd.enable = true;
};
plymouth = {
enable = true;
# themePackages = [
# (pkgs.adi1090x-plymouth-themes.override {
# selected_themes = ["circle_hud"];
# })
# ];
# theme = "circle_hud";
};
};
}