forest/common/generic-uefi-zfs.nix

13 lines
312 B
Nix
Raw Normal View History

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"; }
];
};
}