1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-13 20:44:52 +03:00
mobile-nixos/modules/outputs.nix

25 lines
468 B
Nix
Raw Normal View History

2021-08-27 06:50:00 +03:00
{ config, lib, ... }:
let
inherit (lib)
mkOption
;
in
{
options = {
mobile = {
outputs = {
default = mkOption {
description = ''
Default most likely desired output for this Mobile NixOS build.
The default depends on the system type in use.
'';
# Mark internal so that the documentation does not expose a bogus description.
internal = true;
2021-08-27 06:50:00 +03:00
};
};
};
};
}