melodypond/platforms/orange.nix
2023-09-20 19:06:36 -04:00

22 lines
513 B
Nix

{pkgs, lib, ...}:
{
nixpkgs.hostPlatform.system = "aarch64-linux";
sdImage.imageName = "orange.img";
boot.loader.raspberryPi.version = 4;
boot.supportedFilesystems = lib.mkForce [ "btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs" ];
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";
}