1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00
mobile-nixos/modules/devices-metadata.nix
2020-05-23 18:13:02 -04:00

25 lines
707 B
Nix

{ config, pkgs, ... }:
let
inherit (config) mobile;
inherit (mobile.device) identity;
in
{
# The device-metadata output is used internally by the documentation
# generation to generate the per-device pages.
# Assume this format is fluid and will change.
system.build.device-metadata = pkgs.writeTextFile {
name = "${mobile.device.name}-metadata";
destination = "/${mobile.device.name}.json";
text = (builtins.toJSON {
inherit (identity) name manufacturer;
inherit (mobile) hardware;
system = {
inherit (mobile.system) type system;
};
identifier = mobile.device.name;
fullName = "${identity.manufacturer} ${identity.name}";
});
};
}