1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-10-05 20:47:22 +02:00
nixos-hardware/raspberry-pi/5/default.nix

28 lines
684 B
Nix
Raw Normal View History

2024-04-26 03:57:25 +02:00
{ lib, pkgs, ... }:
{
nixpkgs.overlays = [
(import ./overlay.nix)
];
boot = {
kernelPackages = lib.mkDefault (pkgs.linuxPackagesFor pkgs.linux_rpi5);
initrd.availableKernelModules = [
"nvme"
2024-04-26 03:57:25 +02:00
"usbhid"
"usb_storage"
];
};
# Needed for Xorg to start (https://github.com/raspberrypi-ui/gldriver-test/blob/master/usr/lib/systemd/scripts/rp1_test.sh)
# This won't work for displays connected to the RP1 (DPI/composite/MIPI DSI), since I don't have one to test.
services.xserver.extraConfig = ''
Section "OutputClass"
Identifier "vc4"
MatchDriver "vc4"
Driver "modesetting"
Option "PrimaryGPU" "true"
EndSection
'';
2024-04-26 03:57:25 +02:00
}