mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 02:43:24 +03:00
20 lines
370 B
Nix
20 lines
370 B
Nix
|
# All otions defined here are *extremely internal*.
|
||
|
# **Do not** set them in your configuration.
|
||
|
# **Do not** rely on them existing.
|
||
|
{ lib, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkOption types;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
mobile._internal = {
|
||
|
compressLargeArtifacts = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
internal = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|