nixpkgs/nixos/modules/virtualisation/oci-options.nix
Samuel Dionne-Riel 9849ccb241 nixos: Add OCI image options
Follows what amazon images does.
2023-09-21 22:57:38 +01:00

15 lines
271 B
Nix

{ config, lib, pkgs, ... }:
{
options = {
oci = {
efi = lib.mkOption {
default = pkgs.stdenv.hostPlatform.isAarch64;
internal = true;
description = ''
Whether the OCI instance is using EFI.
'';
};
};
};
}