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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
433 B
Nix
Raw Normal View History

{ 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";
2015-08-17 17:52:45 +00:00
type = types.str;
description = lib.mdDoc "Where the EFI System Partition is mounted.";
};
};
}