1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 18:21:41 +03:00
mobile-nixos/modules/mobile-device.nix

17 lines
296 B
Nix
Raw Normal View History

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