mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-17 13:10:29 +03:00
14 lines
211 B
Nix
14 lines
211 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options.system.build = mkOption {
|
||
|
internal = true;
|
||
|
description = ''
|
||
|
Where the result will be put into.
|
||
|
This ends up building `all`.
|
||
|
'';
|
||
|
};
|
||
|
}
|