caddy: `withPlugins` better error messages for untagged plugins (#368657)
[NixPkgs.git] / nixos / modules / system / boot / loader / efi.nix
blob2725d3678d523604d5b36106661ef77f1219e706
1 { lib, ... }:
3   options.boot.loader.efi = {
5     canTouchEfiVariables = lib.mkOption {
6       default = false;
7       type = lib.types.bool;
8       description = "Whether the installation process is allowed to modify EFI boot variables.";
9     };
11     efiSysMountPoint = lib.mkOption {
12       default = "/boot";
13       type = lib.types.str;
14       description = "Where the EFI System Partition is mounted.";
15     };
16   };