17 lines
389 B
Nix
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";
|
|
};
|
|
}
|