Robotnix Configuration Options
Some robotnix flavors or modules may change the option defaults shown below. Refer to the flavor or module source for details
_module.args
Additional arguments passed to each module in addition to ones
like lib
, config
,
and pkgs
, modulesPath
.
This option is also available to all submodules. Submodules do not
inherit args from their parent module, nor do they provide args to
their parent module or sibling submodules. The sole exception to
this is the argument name
which is provided by
parent modules to a submodule and contains the attribute name
the submodule is bound to, or a unique generated name if it is
not bound to an attribute.
Some arguments are already passed by default, of which the following cannot be changed with this option:
-
{var}
lib
: The nixpkgs library. -
{var}
config
: The results of all options after merging the values from all modules together. -
{var}
options
: The options declared in all modules. -
{var}
specialArgs
: ThespecialArgs
argument passed toevalModules
. -
All attributes of {var}
specialArgs
Whereas option values can generally depend on other option values thanks to laziness, this does not apply to
imports
, which must be computed statically before anything else.For this reason, callers of the module system can provide
specialArgs
which are available during import resolution.For NixOS,
specialArgs
includes {var}modulesPath
, which allows you to import extra modules from the nixpkgs package tree without having to somehow make the module aware of the location of thenixpkgs
or NixOS directories.{ modulesPath, ... }: { imports = [ (modulesPath + "/profiles/minimal.nix") ]; }
For NixOS, the default value for this option includes at least this argument:
- {var}
pkgs
: The nixpkgs package set according to the {option}nixpkgs.pkgs
option.
Type: lazy attribute set of raw value
Declared by: lib/modules.nix
adevtool.devices
The device codenames to extract the vendor blobs for.
Type: list of string
Declared by: modules/adevtool
adevtool.enable
Whether to enable the adevtool module.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/adevtool
adevtool.vendorImgs
The vendor images to be prefetched and made available to adevtool during the build.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of (submodule)
Declared by: modules/adevtool
adevtool.vendorImgs.*.fileName
The file name of the image.
Type: string
Declared by: modules/adevtool
adevtool.vendorImgs.*.sha256
The SHA256 sum of the image.
Type: string
Declared by: modules/adevtool
adevtool.vendorImgs.*.url
The download URL of the image.
Type: string
Declared by: modules/adevtool
adevtool.yarnHash
The yarn hash of the yarn.lock
file inside the vendor/adevtool
repo
in the source tree, as required by fetchYarnDeps
.
Type: string
Declared by: modules/adevtool
androidVersion
Used to select which Android version to use
Default: { _type = "literalExpression"; text = "12"; }
Type: signed integer
Declared by: modules/base.nix
apps.auditor.domain
Domain running the AttestationServer (over HTTPS) for remote verification
Example: {"_type":"literalExpression","text":"\"attestation.example.com\""}
Type: string
Declared by: modules/apps/auditor.nix
apps.auditor.enable
Whether to enable Auditor.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/auditor.nix
apps.bromite.enable
Whether to enable bromite browser.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/chromium.nix
apps.chromium.enable
Whether to enable chromium browser.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/chromium.nix
apps.fdroid.additionalRepos
Additional F-Droid repositories to include in the default build. Note that changes to this setting will only take effect on a freshly installed device--or if the F-Droid storage is cleared.
Default: { _type = "literalExpression"; text = "{ }"; }
Type: attribute set of (submodule)
Declared by: modules/apps/fdroid.nix
apps.fdroid.additionalRepos.<name>.description
Longer textual description of this repository
Default: { _type = "literalExpression"; text = "\"Empty description\""; }
Type: string
Declared by: modules/apps/fdroid.nix
apps.fdroid.additionalRepos.<name>.enable
Whether to enable this repository by default in F-Droid.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/apps/fdroid.nix
apps.fdroid.additionalRepos.<name>.name
Display name to use for this repository
Default: { _type = "literalExpression"; text = "\"‹name›\""; }
Type: string
Declared by: modules/apps/fdroid.nix
apps.fdroid.additionalRepos.<name>.pubkey
Public key associated with this repository. Can be found in /index.xml
under the repo URL.
Type: string
Declared by: modules/apps/fdroid.nix
apps.fdroid.additionalRepos.<name>.pushRequests
Allow this repository to specify apps which should be automatically installed/uninstalled
Default: { _type = "literalExpression"; text = "\"ignore\""; }
Type: one of "ignore", "prompt", "always"
Declared by: modules/apps/fdroid.nix
apps.fdroid.additionalRepos.<name>.url
URL for F-Droid repository
Type: string
Declared by: modules/apps/fdroid.nix
apps.fdroid.enable
Whether to enable F-Droid.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/fdroid.nix
apps.prebuilt
Prebuilt APKs to include in the robotnix build
Default: { _type = "literalExpression"; text = "{ }"; }
Type: attribute set of (submodule)
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.allowInPowerSave
Whether to allow this application to operate in "power save" mode. Disables battery optimization for this app.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.apk
APK file to include in build
Default: { _type = "literalExpression"; text = "null"; }
Type: null or absolute path
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.certificate
Name of certificate to sign APK with. Defaults to the name of the prebuilt app.
If it is a device-specific certificate, the cert/key should be under ${keyStorePath}/${device}/${certificate}.{x509.pem,pk8}
.
Otherwise, it should be ${keyStorePath}/${certificate}.{x509.pem,pk8}
.
Finally, the special string "PRESIGNED" will just use the APK as-is.
Default: { _type = "literalExpression"; text = "\"‹name›\""; }
Type: string
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.defaultPermissions
Permissions to be enabled by default without user prompting.
Default: { _type = "literalExpression"; text = "[ ]"; }
Example: {"_type":"literalExpression","text":"[\n \"INSTALL_PACKAGES\"\n]"}
Type: list of string
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.enable
Include ‹name› APK in Android build
Default: { _type = "literalExpression"; text = "true"; }
Type: boolean
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.modulePrefix
Prefix to prepend to the module name to avoid conflicts. (No spaces)
Default: { _type = "literalExpression"; text = "\"Robotnix\""; }
Type: string
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.name
Name of application. (No spaces)
Default: { _type = "literalExpression"; text = "\"‹name›\""; }
Type: string
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.packageName
APK's Java-style package name (applicationId). This setting only necessary to be set if also using privappPermissions
.
Example: {"_type":"literalExpression","text":"\"com.android.test\""}
Type: string matching the pattern [a-zA-Z0-9_.]*
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.partition
Partition on which to place this app
Type: one of "vendor", "system", "product"
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.privappPermissions
Privileged permissions to apply to this application. Refer to this link and note permissions which say "not for use by third-party applications".
Default: { _type = "literalExpression"; text = "[ ]"; }
Example: {"_type":"literalExpression","text":"[\n \"INSTALL_PACKAGES\"\n]"}
Type: list of string
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.privileged
Whether this APK should be included as a privileged application.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.usesLibraries
Shared library dependencies of this app.
For more information, see https://android.googlesource.com/platform/build/+/75342c19323fea64dbc93fdc5a7def3f81113c83/Changes.md.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/apps/prebuilt.nix
apps.prebuilt.<name>.usesOptionalLibraries
Optional shared library dependencies of this app.
For more information, see https://android.googlesource.com/platform/build/+/75342c19323fea64dbc93fdc5a7def3f81113c83/Changes.md.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/apps/prebuilt.nix
apps.seedvault.enable
Whether to enable Seedvault (backup).
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/seedvault.nix
apps.updater.enable
Whether to enable OTA Updater.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/updater.nix
apps.updater.flavor
Which updater package to use, and which kind of metadata to generate for it.
Default: { _type = "literalExpression"; text = "\"grapheneos\""; }
Type: one of "grapheneos", "lineageos"
Declared by: modules/apps/updater.nix
apps.updater.url
URL for OTA updates
Type: string
Declared by: modules/apps/updater.nix
apps.vanadium.enable
Whether to enable vanadium browser.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/apps/chromium.nix
arch
Architecture of phone, usually set automatically by device
Default: { _type = "literalExpression"; text = "\"arm64\""; }
Type: one of "arm64", "arm", "x86_64", "x86"
Declared by: modules/base.nix
bootanimation.enable
Whether to enable the custom bootanimation module.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/bootanimation.nix
bootanimation.logoMask
The file to put at frameworks/base/core/res/assets/images/android-logo-mask.png
.
Default: { _type = "literalExpression"; text = "null"; }
Type: null or absolute path
Declared by: modules/bootanimation.nix
bootanimation.logoShine
The file to put at frameworks/base/core/res/assets/images/android-logo-shine.png
.
Default: { _type = "literalExpression"; text = "null"; }
Type: null or absolute path
Declared by: modules/bootanimation.nix
buildDateTime
Unix time (seconds since the epoch) that this build is taking place.
Needs to be monotonically increasing for each build if you use the over-the-air (OTA) update mechanism.
e.g. output of date +%s
Default: { _type = "literalExpression"; text = "\"*maximum of source.dirs.<name>.dateTime*\""; }
Example: {"_type":"literalExpression","text":"1565645583"}
Type: signed integer
Declared by: modules/base.nix
buildNumber
Set this to something meaningful to identify the build.
Defaults to YYYYMMDDHH
based on buildDateTime
.
Should be unique for each build for disambiguation.
Example: {"_type":"literalExpression","text":"\"201908121\""}
Type: string
Declared by: modules/base.nix
ccache.enable
Whether to enable ccache.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/base.nix
channel
Default channel to use for updates (can be modified in app)
Default: { _type = "literalExpression"; text = "\"stable\""; }
Type: one of "stable", "beta"
Declared by: modules/release.nix
device
Code name of device build target
Default: { _type = "literalExpression"; text = "null"; }
Example: {"_type":"literalExpression","text":"\"marlin\""}
Type: null or string
Declared by: modules/base.nix
deviceDisplayName
Display name of device build target
Default: { _type = "literalExpression"; text = "null"; }
Example: {"_type":"literalExpression","text":"\"Pixel XL\""}
Type: null or string
Declared by: modules/base.nix
etc
Set of files to be included under /etc
Default: { _type = "literalExpression"; text = "{ }"; }
Type: attribute set of (submodule)
Declared by: modules/etc.nix
etc.<name>.partition
Partition on which to place this etc file
Type: one of "vendor", "system", "product"
Declared by: modules/etc.nix
etc.<name>.source
Path of the source file
Type: absolute path
Declared by: modules/etc.nix
etc.<name>.target
Name of symlink (relative to /etc
). Defaults to the attribute name.
Type: string
Declared by: modules/etc.nix
etc.<name>.text
Text of the file
Default: { _type = "literalExpression"; text = "null"; }
Type: null or string
Declared by: modules/etc.nix
flavor
Set to one of robotnix's supported flavors.
Default: { _type = "literalExpression"; text = "null"; }
Example: {"_type":"literalExpression","text":"\"vanilla\""}
Type: null or one of "lineageos", "grapheneos"
Declared by: modules/base.nix
grapheneos.channel
The GrapheneOS channel to use.
Type: null or one of "alpha", "beta", "stable"
Declared by: flavors/grapheneos
grapheneos.officialBuild
Whether to enable the OFFICIAL_BUILD=true env var (to include the updater).
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: flavors/grapheneos
grapheneos.release
The GrapheneOS release tag to build. Set this if you're building a for a non-phone target, or if you didn't select a channel.
Example: {"_type":"literalExpression","text":"\"2025073000\""}
Type: null or string
Declared by: flavors/grapheneos
hosts
Custom hosts file
Default: { _type = "literalExpression"; text = "null"; }
Type: null or absolute path
Declared by: modules/hosts.nix
incremental
Whether to include an incremental build in otaDir
output
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/release.nix
kernel.buildDateTime
Unix time to use for kernel build timestamp
Default: { _type = "literalExpression"; text = "\"config.buildDateTime\""; }
Type: signed integer
Declared by: modules/kernel.nix
kernel.clangVersion
Version of prebuilt clang to use for kernel. See https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/+/master/README.md"
Type: string
Declared by: modules/kernel.nix
kernel.enable
Whether to enable building custom kernel.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/kernel.nix
kernel.patches
List of patches to apply to kernel source
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of absolute path
Declared by: modules/kernel.nix
kernel.postPatch
Commands to run after patching kernel source
Default: { _type = "literalExpression"; text = "\"\""; }
Type: strings concatenated with "\n"
Declared by: modules/kernel.nix
kernel.relpath
Relative path in source tree to place kernel build artifacts
Type: string
Declared by: modules/kernel.nix
kernel.src
Path to kernel source
Type: absolute path
Declared by: modules/kernel.nix
microg.enable
Whether to enable MicroG.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/microg.nix
nixpkgs.overlays
Nixpkgs overlays to override the default packages used while building robotnix.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of unspecified value
Declared by:
pixel.activeEdge.enable
Whether to enable Active Edge gestures using the open-source implementation from LineageOS.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/pixel/active-edge.nix
pixel.useUpstreamDriverBinaries
Use device vendor binaries from https://developers.google.com/android/drivers
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/pixel/driver-binaries.nix
product.additionalProductPackages
PRODUCT_PACKAGES
to add under product
partition.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/base.nix
productName
Product name for lunch
Default: { _type = "literalExpression"; text = "\"\\\${productNamePrefix}\\\${device}\""; }
Example: {"_type":"literalExpression","text":"\"aosp_crosshatch\""}
Type: string
Declared by: modules/base.nix
productNamePrefix
Prefix for product name used with lunch
Default: { _type = "literalExpression"; text = "\"aosp_\""; }
Type: string
Declared by: modules/base.nix
release
The TARGET_RELEASE argument used with lunch
Type: string
Declared by: modules/base.nix
removedProductPackages
PRODUCT_PACKAGES
to remove from build
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/base.nix
resources
Additional package resources to include. The first key refers to the relative path for the package, and the second key refers to the resource name
Default: { _type = "literalExpression"; text = "{ }"; }
Example: {"_type":"literalExpression","text":"{ \"frameworks/base/core/res\".config_enableAutoPowerModes = true; }"}
Type: attribute set of attribute set of (boolean or signed integer or string or list of (string or signed integer) or (submodule))
Declared by: modules/resources.nix
retrofit
Generate a retrofit OTA for upgrading a device without dynamic partitions. See also https://source.android.com/devices/tech/ota/dynamic_partitions/ab_legacy#generating-update-packages
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/release.nix
security.pki.certificateFiles
A list of files containing trusted root certificates in PEM format. These are added as system-level trust anchors.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of absolute path
Declared by: modules/security-pki.nix
signing.apex.enable
Whether to enable signing APEX packages.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/signing.nix
signing.apex.packageNames
APEX packages which need to be signed
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/signing.nix
signing.avb.enable
Whether to enable AVB signing.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/signing.nix
signing.avb.fingerprint
SHA256 hash of avb_pkmd.bin
. Should be set automatically based on file under keyStorePath
if signing.enable = true
Type: string matching the pattern [0-9A-F]{64}
Declared by: modules/signing.nix
signing.avb.mode
Mode of AVB signing to use.
Default: { _type = "literalExpression"; text = "\"vbmeta_chained\""; }
Type: one of "verity_only", "vbmeta_simple", "vbmeta_chained", "vbmeta_chained_v2"
Declared by: modules/signing.nix
signing.avb.verityCert
Verity certificate for AVB. e.g. in x509 DER format.x509.pem. Only needed if signing.avb.mode = "verity_only"
Type: absolute path
Declared by: modules/signing.nix
signing.buildTimeKeyStorePath
Path to generated keys for signing to use at build-time, as opposed to keyStorePath, which is used at evaluation-time.
Type: string or absolute path
Declared by: modules/signing.nix
signing.enable
Whether to sign build using user-provided keys. Otherwise, build will be signed using insecure test-keys.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/signing.nix
signing.keyStorePath
String containing absolute path to generated keys for signing.
This must be a string and not a "nix path" to ensure that your secret keys are not imported into the public /nix/store
.
Example: {"_type":"literalExpression","text":"\"/var/secrets/android-keys\""}
Type: string
Declared by: modules/signing.nix
source.dirs
Directories to include in Android build process. Normally set by the entries of the lockfile specificed by source.repoLockfile
, but can also be used to add additional directories.
Default: { _type = "literalExpression"; text = "{ }"; }
Type: attribute set of (submodule)
Declared by: modules/source.nix
source.dirs.<name>.copyfiles
Files to copy from this source dir elsewhere into the source tree, i.e. the robotnix implementation of the git-repo copyfile
tag.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of (submodule)
Declared by: modules/source.nix
source.dirs.<name>.enable
Whether to include this directory in the android build source tree.
Default: { _type = "literalExpression"; text = "true"; }
Type: boolean
Declared by: modules/source.nix
source.dirs.<name>.linkfiles
Symlinks into this source dir to create in the source tree, i.e. the robotnix implementation of the git-repo linkfile
tag.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of (submodule)
Declared by: modules/source.nix
source.dirs.<name>.nativeBuildInputs
nativeBuildInputs to be made available during the execution of postPatch
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of package
Declared by: modules/source.nix
source.dirs.<name>.patches
Patches to apply to source directory.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of absolute path
Declared by: modules/source.nix
source.dirs.<name>.postPatch
Additional commands to run after patching source directory.
Default: { _type = "literalExpression"; text = "\"\""; }
Type: strings concatenated with "\n"
Declared by: modules/source.nix
source.dirs.<name>.relpath
Relative path under android source tree to place this directory. Defaults to attribute name.
Default: { _type = "literalExpression"; text = "\"‹name›\""; }
Type: string
Declared by: modules/source.nix
source.dirs.<name>.src
Source to use for this android source directory.
Default: { _type = "literalExpression"; text = "<derivation empty>"; }
Type: absolute path
Declared by: modules/source.nix
source.excludeGroups
Project groups to exclude from source tree
Default: { _type = "literalExpression"; text = '' [ "darwin" "mips" ]''; }
Type: list of string
Declared by: modules/source.nix
source.includeGroups
Project groups to include in source tree (overrides excludeGroups
)
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/source.nix
source.manifest.categories
repo2nix
project categories to include from the manifest.
Type: list of (string or attribute set of string)
Declared by: modules/source.nix
source.manifest.enable
Whether to import the source dirs from a git-repo lockfile.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/source.nix
source.manifest.lockfile
git-repo manifest lockfile as generated by repo2nix fetch
.
Default: { _type = "literalExpression"; text = "null"; }
Type: null or absolute path
Declared by: modules/source.nix
system.additionalProductPackages
PRODUCT_PACKAGES
to add under system
partition.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/base.nix
useReproducibilityFixes
Apply additional fixes for reproducibility
Default: { _type = "literalExpression"; text = "true"; }
Type: boolean
Declared by: modules/base.nix
variant
user
has limited access and is suited for production.
userdebug
is like user but with root access and debug capability.
eng
is the development configuration with additional debugging tools.
Default: { _type = "literalExpression"; text = "\"user\""; }
Type: one of "user", "userdebug", "eng"
Declared by: modules/base.nix
vendor.additionalProductPackages
PRODUCT_PACKAGES
to add under vendor
partition.
Default: { _type = "literalExpression"; text = "[ ]"; }
Type: list of string
Declared by: modules/base.nix
webview
Webview providers to include in Android build. Pre-specified options are chromium
, bromite
, and vanadium
.
Example: {"_type":"literalExpression","text":"{ bromite.enable = true; }"}
Type: attribute set of (submodule)
Declared by: modules/webview.nix
webview.<name>.apk
APK file containing webview package.
Type: absolute path
Declared by: modules/webview.nix
webview.<name>.availableByDefault
If true
, this provider can be automatically selected by the
framework, if it's the first valid choice. If false
, this
provider will only be used if the user selects it themselves from
the developer settings menu.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/webview.nix
webview.<name>.description
The name shown to the user in the developer settings menu.
Default: { _type = "literalExpression"; text = "\"Android System WebView\""; }
Type: string
Declared by: modules/webview.nix
webview.<name>.enable
Whether to enable ‹name› webview.
Default: { _type = "literalExpression"; text = "false"; }
Example: {"_type":"literalExpression","text":"true"}
Type: boolean
Declared by: modules/webview.nix
webview.<name>.isFallback
If true
, this provider will be automatically disabled by the
framework, preventing it from being used or updated by app
stores, unless there is no other valid provider available. Only
one provider can be a fallback.
Default: { _type = "literalExpression"; text = "false"; }
Type: boolean
Declared by: modules/webview.nix
webview.<name>.packageName
The Android package name of the APK.
Default: { _type = "literalExpression"; text = "\"com.android.webview\""; }
Type: string
Declared by: modules/webview.nix