nichts/options/boot/grub-boot.nix

18 lines
390 B
Nix
Raw Normal View History

2024-05-18 17:49:42 +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-18 17:49:42 +02:00
font =
"${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
themePackages = [ pkgs.catppuccin-plymouth ];
theme = "catppuccin-macchiato";
};
2024-04-10 14:21:41 +02:00
}