at 15.09-beta 419 B view raw
1{ lib, ... }: 2 3with lib; 4 5{ 6 options.boot.loader.efi = { 7 canTouchEfiVariables = mkOption { 8 default = false; 9 10 type = types.bool; 11 12 description = "Whether or not the installation process should modify efi boot variables."; 13 }; 14 15 efiSysMountPoint = mkOption { 16 default = "/boot"; 17 18 type = types.string; 19 20 description = "Where the EFI System Partition is mounted."; 21 }; 22 }; 23}