2014-04-14 16:26:48 +02:00
|
|
|
{ lib, ... }:
|
2013-02-02 06:03:45 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2013-02-02 06:03:45 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
options.boot.loader.efi = {
|
2013-02-21 18:33:54 +01:00
|
|
|
canTouchEfiVariables = mkOption {
|
|
|
|
default = false;
|
|
|
|
|
|
|
|
type = types.bool;
|
|
|
|
|
|
|
|
description = "Whether or not the installation process should modify efi boot variables.";
|
|
|
|
};
|
|
|
|
|
2013-02-02 06:03:45 +01:00
|
|
|
efiSysMountPoint = mkOption {
|
|
|
|
default = "/boot";
|
|
|
|
|
|
|
|
type = types.string;
|
|
|
|
|
|
|
|
description = "Where the EFI System Partition is mounted.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|