1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-01 11:43:55 +03:00

Removes dead code.

This commit is contained in:
Samuel Dionne-Riel 2018-06-17 18:53:20 +00:00
parent 9e44b27e21
commit 982a705dc2
2 changed files with 1 additions and 10 deletions

View File

@ -1,13 +1,10 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let
msm-fb-refresher = (import ../../quirks/qualcomm/msm-fb-refresher.nix) { inherit pkgs lib; };
in
{ {
mobile.device.name = "asus-z00t"; mobile.device.name = "asus-z00t";
mobile.device.info = (lib.importJSON ../postmarketOS-devices.json).asus-z00t // { mobile.device.info = (lib.importJSON ../postmarketOS-devices.json).asus-z00t // {
# TODO : make kernel part of options. # TODO : make kernel part of options.
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; }; kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
# TODO : make stage-1 part of options.
}; };
mobile.hardware = { mobile.hardware = {
# This could also be pre-built option types? # This could also be pre-built option types?

View File

@ -1,6 +0,0 @@
{
pkgs,
...
}:
{
}