nichts/modules/system/boot/module.nix

18 lines
412 B
Nix
Raw Normal View History

2024-07-28 11:00:54 +02:00
{pkgs, ...}: {
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
configurationLimit = 69;
2024-07-28 11:00:54 +02:00
};
};
boot.plymouth = {
enable = true;
# font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
themePackages = [pkgs.catppuccin-plymouth];
theme = "catppuccin-macchiato";
};
}