02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
20 lines
433 B
Nix
20 lines
433 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.boot.loader.efi = {
|
|
|
|
canTouchEfiVariables = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = lib.mdDoc "Whether the installation process is allowed to modify EFI boot variables.";
|
|
};
|
|
|
|
efiSysMountPoint = mkOption {
|
|
default = "/boot";
|
|
type = types.str;
|
|
description = lib.mdDoc "Where the EFI System Partition is mounted.";
|
|
};
|
|
};
|
|
}
|