about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/virtualisation/oci-options.nix
blob: 0dfedc6a530c843c0a5a06325f88871a973cab5a (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 = true;
        internal = true;
        description = ''
          Whether the OCI instance is using EFI.
        '';
      };
    };
  };
}