boot/module.nix: switch to sytemd-boot

This commit is contained in:
Charlie Root 2025-04-06 21:22:56 +02:00
commit edaa90d993
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -1,17 +1,28 @@
{pkgs, ...}: { {pkgs, ...}: {
boot.loader = { boot = {
efi.canTouchEfiVariables = true; initrd = {
grub = { verbose = true;
enable = true; systemd.enable = true;
efiSupport = true; };
device = "nodev"; loader = {
configurationLimit = 5; 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";
}; };
}; };
boot.plymouth = {
enable = true;
# font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
themePackages = [pkgs.catppuccin-plymouth];
theme = "catppuccin-macchiato";
};
} }