aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix
blob: 79db1fa29bc431504d79c6d2eb73b23adc024d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, ... }:
{
  imports = [
    ../sd-card/sd-image-raspberrypi4-installer.nix
  ];
  config = {
    warnings = [
      ''
      .../cd-dvd/sd-image-raspberrypi4.nix is deprecated and will eventually be removed.
      Please switch to .../sd-card/sd-image-raspberrypi4-installer.nix, instead.
      ''
    ];
  };
}