2024-06-28 15:09:05 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
boot.loader.grub = {
|
|
|
|
enable = true;
|
|
|
|
zfsSupport = true;
|
|
|
|
efiSupport = true;
|
|
|
|
efiInstallAsRemovable = true;
|
2024-07-23 07:05:56 +00:00
|
|
|
theme = "${pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; }}/grub";
|
2024-06-28 15:09:05 +00:00
|
|
|
mirroredBoots = [
|
|
|
|
{ devices = [ "nodev"]; path = "/boot"; }
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|