1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-13 12:35:48 +03:00
mobile-nixos/modules/internal.nix
2020-03-30 23:49:28 -04:00

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;
};
};
};
}