nixpkgs/nixos/modules/system/boot/loader/efi.nix
2015-09-18 18:48:50 +00:00

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.";
};
};
}