mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-13 12:35:48 +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;
|
|
};
|
|
};
|
|
};
|
|
}
|