at 24.11-pre 241 B view raw
1{ config, lib, pkgs, ... }: 2{ 3 options = { 4 oci = { 5 efi = lib.mkOption { 6 default = true; 7 internal = true; 8 description = '' 9 Whether the OCI instance is using EFI. 10 ''; 11 }; 12 }; 13 }; 14}