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
grafana-alloy: don't build the frontend twice
[NixPkgs.git]
/
nixos
/
modules
/
virtualisation
/
oci-options.nix
blob
76f3475a4281769f90d303e436f164aa2d28b43d
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
diskSize = lib.mkOption {
13
type = lib.types.int;
14
default = 8192;
15
description = "Size of the disk image created in MB.";
16
example = "diskSize = 12 * 1024; # 12GiB";
17
};
18
};
19
};
20
}