1{ lib, ... }:
2{
3 options.boot.loader.efi = {
4
5 canTouchEfiVariables = lib.mkOption {
6 default = false;
7 type = lib.types.bool;
8 description = "Whether the installation process is allowed to modify EFI boot variables.";
9 };
10
11 efiSysMountPoint = lib.mkOption {
12 default = "/boot";
13 type = lib.types.str;
14 description = "Where the EFI System Partition is mounted.";
15 };
16 };
17}