nichts/options/boot/grub-boot.nix

17 lines
380 B
Nix
Raw Normal View History

2024-05-22 14:29:45 +02:00
{pkgs, ...}: {
2024-04-10 14:21:41 +02:00
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
2024-05-18 17:49:42 +02:00
boot.plymouth = {
2024-05-18 20:07:17 +02:00
enable = false;
2024-05-22 14:29:45 +02:00
font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
themePackages = [pkgs.catppuccin-plymouth];
2024-05-18 17:49:42 +02:00
theme = "catppuccin-macchiato";
};
2024-04-10 14:21:41 +02:00
}