1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 11:03:37 +03:00
mobile-nixos/modules/module-list.nix
Samuel Dionne-Riel 7f0ba7de38 initrd: Remove framebuffer options
This is now all moved to boot/init tasks.

Furthermore, I don't think we ever want to *disable* starting the
framebuffer stuff. What's really needed is detecting *what kind* of
graphics subsystem to use, and this can't happen at eval time.
2020-02-03 16:19:10 -05:00

34 lines
772 B
Nix

# Import the upstream module-list.
# FIXME : This won't allow importing `mobile-nixos` into /etc/configuration.nix
(import <nixpkgs/nixos/modules/module-list.nix>) ++
# Then add our additional modules.
# Keep this list `:sort`ed.
[
./_nixos-disintegration
./adb.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-fbterm.nix
./initrd-fail.nix
./initrd-kernel.nix
./initrd-loop.nix
./initrd-network.nix
./initrd-shell.nix
./initrd-splash.nix
./initrd-ssh.nix
./initrd-usb.nix
./initrd.nix
./mobile-device.nix
./nixpkgs.nix
./quirks/qualcomm/default.nix
./system-target.nix
./system-types.nix
]