summary refs log tree commit diff
path: root/nixos/modules/installer/sd-card/sd-image-raspberrypi4.nix
blob: 5bdec7de86e8ae81b8f44e257b7950a65d7569b0 (plain) (blame)
1
2
3
4
5
6
7
8
# To build, use:
# nix-build nixos -I nixos-config=nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix -A config.system.build.sdImage
{ config, lib, pkgs, ... }:

{
  imports = [ ./sd-image-aarch64.nix ];
  boot.kernelPackages = pkgs.linuxPackages_rpi4;
}