mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 19:23:01 +03:00
740da6f71d
While it is an RK3399 derivative, we'll identify all devices as their manufacturer does. Meaning that this is an OP1. Though this seems useless at first glance, this allows us to put conditionals on OP1 specific features or misfeatures, if any.
38 lines
876 B
Nix
38 lines
876 B
Nix
# Keep sorted, <nixpkgs> imports first.
|
|
let
|
|
# This is only used to get the path to nixpkgs.
|
|
# This one shouldn't affect cross-compiling.
|
|
nixpkgs = (import <nixpkgs> {}).path;
|
|
in
|
|
[
|
|
(nixpkgs + "/nixos/modules/misc/nixpkgs.nix")
|
|
(nixpkgs + "/nixos/modules/misc/assertions.nix")
|
|
./boot-initrd.nix
|
|
./hardware-generic.nix
|
|
./hardware-qualcomm.nix
|
|
./hardware-ram.nix
|
|
./hardware-rockchip.nix
|
|
./hardware-screen.nix
|
|
./hardware-soc.nix
|
|
./initrd-base.nix
|
|
./initrd-devices.nix
|
|
./initrd-framebuffer.nix
|
|
./initrd-kernel.nix
|
|
./initrd-logger.nix
|
|
./initrd-loop.nix
|
|
./initrd-nc-shell.nix
|
|
./initrd-network.nix
|
|
./initrd-shell.nix
|
|
./initrd-splash.nix
|
|
./initrd-ssh.nix
|
|
./initrd-telnet.nix
|
|
./initrd-usb.nix
|
|
./mobile-device.nix
|
|
./nixpkgs.nix
|
|
./quirks-qualcomm.nix
|
|
./stage-2.nix
|
|
./system-build.nix
|
|
./system-target.nix
|
|
./system-types.nix
|
|
]
|