nixos/modules/boot/default.nix

58 lines
1.5 KiB
Nix
Raw Normal View History

2023-07-21 21:46:24 +08:00
inputs:
{
options.nixos.boot = let inherit (inputs.lib) mkOption types; in
{
grub =
{
timeout = mkOption { type = types.int; default = 5; };
2023-07-27 23:05:04 +08:00
windowsEntries = mkOption { type = types.attrsOf types.nonEmptyStr; default = {}; };
2023-07-21 21:46:24 +08:00
installDevice = mkOption { type = types.str; }; # "efi" using efi, or dev path like "/dev/sda" using bios
};
};
2023-07-26 23:36:12 +08:00
config =
let
inherit (inputs.lib) mkMerge mkIf;
2023-07-27 23:05:04 +08:00
inherit (inputs.localLib) mkConditional attrsToList stripeTabs;
2023-07-26 23:36:12 +08:00
inherit (inputs.config.nixos) boot;
2023-07-27 23:05:04 +08:00
inherit (builtins) concatStringsSep map;
2023-07-26 23:36:12 +08:00
in mkMerge
[
# generic
2023-07-22 14:06:41 +08:00
{
2023-07-26 23:36:12 +08:00
boot =
2023-07-21 21:46:24 +08:00
{
2023-07-26 23:36:12 +08:00
loader.grub = { enable = true; useOSProber = false; };
initrd.systemd.enable = true;
};
}
# grub.timeout
{ boot.loader.timeout = boot.grub.timeout; }
2023-07-27 23:05:04 +08:00
# grub.windowsEntries
{
boot.loader.grub.extraEntries = concatStringsSep "" (map (system: stripeTabs
''
menuentry "${system.value}" {
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root ${system.name}
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
'') (attrsToList boot.grub.windowsEntries));
}
2023-07-26 23:36:12 +08:00
# grub.installDevice
(
mkConditional (boot.grub.installDevice == "efi")
2023-07-21 21:46:24 +08:00
{
2023-07-26 23:36:12 +08:00
boot.loader =
{
efi = { canTouchEfiVariables = true; efiSysMountPoint = "/boot/efi"; };
grub = { device = "nodev"; efiSupport = true; };
};
}
{ boot.loader.grub.device = boot.grub.installDevice; }
)
];
2023-07-21 22:02:48 +08:00
}