boot/module.nix: switch to sytemd-boot
This commit is contained in:
parent
500c9d2cd6
commit
edaa90d993
1 changed files with 24 additions and 13 deletions
|
@ -1,17 +1,28 @@
|
|||
{pkgs, ...}: {
|
||||
boot.loader = {
|
||||
boot = {
|
||||
initrd = {
|
||||
verbose = true;
|
||||
systemd.enable = true;
|
||||
};
|
||||
loader = {
|
||||
efi.canTouchEfiVariables = true;
|
||||
grub = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
editor = true;
|
||||
configurationLimit = 5;
|
||||
};
|
||||
grub = {
|
||||
enable = false;
|
||||
efiSupport = true;
|
||||
device = "nodev";
|
||||
configurationLimit = 5;
|
||||
};
|
||||
};
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
plymouth = {
|
||||
enable = false;
|
||||
# font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
|
||||
themePackages = [pkgs.catppuccin-plymouth];
|
||||
theme = "catppuccin-macchiato";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue