1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00
mobile-nixos/modules/internal.nix

20 lines
370 B
Nix
Raw Normal View History

2020-03-31 06:49:28 +03:00
# 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;
};
};
};
}