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