summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
blob: 76c1509b8f7e01807647de91e28f9cbef72988e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, ... }:
{
  imports = [
    ../sd-card/sd-image-aarch64-installer.nix
  ];
  config = {
    warnings = [
      ''
      .../cd-dvd/sd-image-aarch64.nix is deprecated and will eventually be removed.
      Please switch to .../sd-card/sd-image-aarch64-installer.nix, instead.
      ''
    ];
  };
}