20 lines
405 B
Nix
20 lines
405 B
Nix
{pkgs, ...}:
|
|
{
|
|
nixpkgs.hostPlatform.system = "aarch64-linux";
|
|
sdImage.imageName = "orange.img";
|
|
|
|
boot.loader.raspberryPi.version = 4;
|
|
|
|
hardware.raspberry-pi."4" = {
|
|
fkms-3d.enable = true;
|
|
apply-overlays-dtmerge.enable = true;
|
|
};
|
|
console.enable = false;
|
|
environment.systemPackages = with pkgs; [
|
|
libraspberrypi
|
|
raspberrypi-eeprom
|
|
];
|
|
|
|
networking.hostName = "orange";
|
|
}
|