2024-07-28 11:00:54 +02:00
|
|
|
{pkgs, ...}: {
|
2025-04-06 21:22:56 +02:00
|
|
|
boot = {
|
|
|
|
initrd = {
|
|
|
|
verbose = true;
|
|
|
|
systemd.enable = true;
|
|
|
|
};
|
|
|
|
loader = {
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
systemd-boot = {
|
|
|
|
enable = true;
|
|
|
|
editor = true;
|
|
|
|
configurationLimit = 5;
|
|
|
|
};
|
|
|
|
grub = {
|
|
|
|
enable = false;
|
|
|
|
efiSupport = true;
|
|
|
|
device = "nodev";
|
|
|
|
configurationLimit = 5;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
plymouth = {
|
|
|
|
enable = false;
|
|
|
|
# font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
|
|
|
|
themePackages = [pkgs.catppuccin-plymouth];
|
|
|
|
theme = "catppuccin-macchiato";
|
2024-07-28 11:00:54 +02:00
|
|
|
};
|
2024-08-16 13:32:13 +02:00
|
|
|
};
|
|
|
|
}
|