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, ...}: {
|
{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";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue