nixos-config/common/components/bootloader.nix

28 lines
627 B
Nix
Raw Normal View History

2024-04-22 21:01:29 +02:00
{
2024-04-23 16:19:33 +02:00
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
};
efi.canTouchEfiVariables = true;
};
initrd = {
2024-04-22 21:01:29 +02:00
enable = true;
2024-04-23 16:19:33 +02:00
systemd.enable = true;
2024-04-22 21:01:29 +02:00
};
};
# boot.plymouth = {
# enable = true;
# font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
# themePackages = [ pkgs.catppuccin-plymouth ];
# theme = "catppuccin-macchiato";
# logo = pkgs.fetchurl {
# url = "https://nixos.org/logo/nixos-hires.png";
# sha256 = "1ivzgd7iz0i06y36p8m5w48fd8pjqwxhdaavc0pxs7w1g7mcy5si";
# };
# };
}