mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-11-28 04:14:57 +03:00
6095b623f6
Network doesn't work :/
15 lines
283 B
Nix
15 lines
283 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.mobile.hardware.ram = mkOption {
|
|
type = types.int;
|
|
description = ''
|
|
Total RAM available (in MB, 1GB = 1024MB).
|
|
|
|
This may be used to turn on or off features depending on the device's capabilities.
|
|
'';
|
|
};
|
|
}
|