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

15 lines
283 B
Nix
Raw Normal View History

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