mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-14 09:16:39 +03:00
23 lines
352 B
Nix
23 lines
352 B
Nix
|
{ 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.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|