nixpkgs/nixos/modules/system/boot/loader/efi.nix

21 lines
413 B
Nix
Raw Normal View History

{ lib, ... }:
with lib;
{
options.boot.loader.efi = {
canTouchEfiVariables = mkOption {
default = false;
type = types.bool;
description = "Whether the installation process is allowed to modify EFI boot variables.";
};
efiSysMountPoint = mkOption {
default = "/boot";
2015-08-17 17:52:45 +00:00
type = types.str;
description = "Where the EFI System Partition is mounted.";
};
};
}