1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-28 04:14:57 +03:00
mobile-nixos/modules/hardware-ram.nix
Samuel Dionne-Riel 6095b623f6 Adds qemu-x86_64 device.
Network doesn't work :/
2018-06-17 20:55:34 -04:00

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.
'';
};
}