mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-11-24 04:38:33 +03:00
17 lines
296 B
Nix
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`.
|
|
};
|
|
};
|
|
}
|