Skip bootloader

This commit is contained in:
Tyler Mayoff 2025-03-03 20:27:12 -05:00
parent 76b9aac30d
commit c5f988764c

View file

@ -24,19 +24,25 @@
}; };
}; };
# Bootloader. # Bootloader
boot.loader.systemd-boot = { boot = {
loader = {
timeout = 0;
systemd-boot = {
enable = true; enable = true;
configurationLimit = 5; configurationLimit = 5;
}; };
boot.loader.efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
};
boot.plymouth = { plymouth = {
enable = true; enable = true;
themePackages = [pkgs.catppuccin-plymouth]; themePackages = [pkgs.catppuccin-plymouth];
theme = "catppuccin-macchiato"; theme = "catppuccin-macchiato";
}; };
};
# Nix options # Nix options
nix.optimise.automatic = true; nix.optimise.automatic = true;