about summary refs log tree commit diff
path: root/nixos/modules/virtualisation/oci-options.nix
blob: 15c7b30863dbdf80d280a8a8c1e0d13cda5b3465 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }:
{
  options = {
    oci = {
      efi = lib.mkOption {
        default = pkgs.stdenv.hostPlatform.isAarch64;
        internal = true;
        description = ''
          Whether the OCI instance is using EFI.
        '';
      };
    };
  };
}