1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-24 04:38:33 +03:00
mobile-nixos/modules/mobile-device.nix
2018-06-16 23:21:41 +00:00

17 lines
296 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
options.mobile = {
device.name = mkOption {
type = types.str;
};
device.info = mkOption {
#type = types.attrSet;
description = "system type specific informations";
# This probably should be `internal`.
};
};
}