24 lines
416 B
Nix
24 lines
416 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.boot.loader.efi = {
|
|
canTouchEfiVariables = mkOption {
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = "Whether or not the installation process should modify efi boot variables.";
|
|
};
|
|
|
|
efiSysMountPoint = mkOption {
|
|
default = "/boot";
|
|
|
|
type = types.str;
|
|
|
|
description = "Where the EFI System Partition is mounted.";
|
|
};
|
|
};
|
|
}
|