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