repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
typioca: 2.7.0 -> 2.8.0
[NixPkgs.git]
/
nixos
/
modules
/
virtualisation
/
oci-options.nix
blob
0dfedc6a530c843c0a5a06325f88871a973cab5a
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
}