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
linuxPackages_latest.broadcom_sta: add patch to compile on Kernel 6.12 (#359484)
[NixPkgs.git]
/
nixos
/
modules
/
virtualisation
/
oci-options.nix
blob
b8d66c0290b3c9f6d244f215b635c30c0f9d2ac8
1
{
2
lib,
3
...
4
}:
5
{
6
imports = [
7
./disk-size-option.nix
8
(lib.mkRenamedOptionModuleWith {
9
sinceRelease = 2411;
10
from = [
11
"oci"
12
"diskSize"
13
];
14
to = [
15
"virtualisation"
16
"diskSize"
17
];
18
})
19
];
20
21
options = {
22
oci = {
23
efi = lib.mkOption {
24
default = true;
25
internal = true;
26
description = ''
27
Whether the OCI instance is using EFI.
28
'';
29
};
30
};
31
};
32
}