This commit is contained in:
Domen Kožar 2021-05-11 09:32:03 +02:00
parent 68babad7f9
commit b72c683304
No known key found for this signature in database
GPG Key ID: C2FFBCAFD2C24246
3 changed files with 32 additions and 0 deletions

View File

@ -137,6 +137,7 @@ See code for all available configurations.
| [MSI GS60 2QE][] | `<nixos-hardware/msi/gs60>` |
| PC Engines APU | `<nixos-hardware/pcengines/apu>` |
| [Raspberry Pi 2][] | `<nixos-hardware/raspberry-pi/2>` |
| [Raspberry Pi 4][] | `<nixos-hardware/raspberry-pi/4>` |
| [Samsung Series 9 NP900X3C][] | `<nixos-hardware/samsung/np900x3c>` |
| [Purism Librem 13v3][] | `<nixos-hardware/purism/librem/13v3>` |
| [Purism Librem 15v3][] | `<nixos-hardware/purism/librem/15v3>` |

View File

@ -73,6 +73,7 @@
microsoft-surface-pro-3 = import ./microsoft/surface-pro/3;
pcengines-apu = import ./pcengines/apu;
raspberry-pi-2 = import ./raspberry-pi/2;
raspberry-pi-4 = import ./raspberry-pi/4;
samsung-np900x3c = import ./samsung/np900x3c;
system76 = import ./system76;
system76-darp6 = import ./system76/darp6;

View File

@ -0,0 +1,30 @@
{ lib, pkgs, ...}:
{
boot = {
kernelPackages = lib.mkDefault pkgs.linuxPackages_rpi4;
initrd.availableKernelModules = [ "usbhid" "usb_storage" "vc4" ];
# Needed for 4K displays
kernelParams = [ "cma=128M" ];
loader = {
raspberryPi = {
enable = true;
version = 4;
firmwareConfig = ''
dtparam=audio=on
gpu_mem=192
'';
};
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
};
nix.buildCores = 4;
# Required for the Wireless firmware
hardware.enableRedistributableFirmware = true;
}