nichts/options/boot/grub-boot.nix
2024-05-18 17:49:42 +02:00

17 lines
389 B
Nix

{ pkgs, ... }: {
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
boot.plymouth = {
enable = true;
font =
"${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
themePackages = [ pkgs.catppuccin-plymouth ];
theme = "catppuccin-macchiato";
};
}