8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
20 lines
413 B
Nix
20 lines
413 B
Nix
{ 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";
|
|
type = types.str;
|
|
description = "Where the EFI System Partition is mounted.";
|
|
};
|
|
};
|
|
}
|