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