mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2025-01-08 09:59:47 +01:00
Split configuration in a way that can be imported
This commit is contained in:
parent
b972d349aa
commit
4569bf8172
2 changed files with 44 additions and 39 deletions
|
@ -9,45 +9,7 @@ in
|
||||||
<nixpkgs/nixos/modules/profiles/minimal.nix>
|
<nixpkgs/nixos/modules/profiles/minimal.nix>
|
||||||
<nixpkgs/nixos/modules/profiles/installation-device.nix>
|
<nixpkgs/nixos/modules/profiles/installation-device.nix>
|
||||||
./nixos/sd-image-aarch64.nix
|
./nixos/sd-image-aarch64.nix
|
||||||
];
|
./pinebook_pro.nix
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
|
||||||
(import ./overlay.nix)
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_pinebookpro;
|
|
||||||
|
|
||||||
# This list of modules is not entirely minified, but represents
|
|
||||||
# a set of modules that is required for the display to work in stage-1.
|
|
||||||
# Further minification can be done, but requires trial-and-error mainly.
|
|
||||||
boot.initrd.kernelModules = [
|
|
||||||
# Rockchip modules
|
|
||||||
"rockchip_rga"
|
|
||||||
"rockchip_saradc"
|
|
||||||
"rockchip_thermal"
|
|
||||||
"rockchipdrm"
|
|
||||||
|
|
||||||
# GPU/Display modules
|
|
||||||
"analogix_dp"
|
|
||||||
"cec"
|
|
||||||
"drm"
|
|
||||||
"drm_kms_helper"
|
|
||||||
"dw_hdmi"
|
|
||||||
"dw_mipi_dsi"
|
|
||||||
"gpu_sched"
|
|
||||||
"panel_simple"
|
|
||||||
"panfrost"
|
|
||||||
"pwm_bl"
|
|
||||||
|
|
||||||
# USB / Type-C related modules
|
|
||||||
"fusb302"
|
|
||||||
"tcpm"
|
|
||||||
"typec"
|
|
||||||
|
|
||||||
# Misc. modules
|
|
||||||
"cw2015_battery"
|
|
||||||
"gpio_charger"
|
|
||||||
"rtc_rk808"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
sdImage = {
|
sdImage = {
|
||||||
|
|
43
pinebook_pro.nix
Normal file
43
pinebook_pro.nix
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# This configuration file can be safely imported in your system configuration.
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import ./overlay.nix)
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.kernelPackages = pkgs.linuxPackages_pinebookpro;
|
||||||
|
|
||||||
|
# This list of modules is not entirely minified, but represents
|
||||||
|
# a set of modules that is required for the display to work in stage-1.
|
||||||
|
# Further minification can be done, but requires trial-and-error mainly.
|
||||||
|
boot.initrd.kernelModules = [
|
||||||
|
# Rockchip modules
|
||||||
|
"rockchip_rga"
|
||||||
|
"rockchip_saradc"
|
||||||
|
"rockchip_thermal"
|
||||||
|
"rockchipdrm"
|
||||||
|
|
||||||
|
# GPU/Display modules
|
||||||
|
"analogix_dp"
|
||||||
|
"cec"
|
||||||
|
"drm"
|
||||||
|
"drm_kms_helper"
|
||||||
|
"dw_hdmi"
|
||||||
|
"dw_mipi_dsi"
|
||||||
|
"gpu_sched"
|
||||||
|
"panel_simple"
|
||||||
|
"panfrost"
|
||||||
|
"pwm_bl"
|
||||||
|
|
||||||
|
# USB / Type-C related modules
|
||||||
|
"fusb302"
|
||||||
|
"tcpm"
|
||||||
|
"typec"
|
||||||
|
|
||||||
|
# Misc. modules
|
||||||
|
"cw2015_battery"
|
||||||
|
"gpio_charger"
|
||||||
|
"rtc_rk808"
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue