installer: add deprecation warning about sd-card file move

This commit is contained in:
David Arnold
2021-02-19 19:00:19 -05:00
parent 1009c09b4f
commit 68afbf9d63
6 changed files with 54 additions and 0 deletions
@@ -1,5 +1,14 @@
{ config, ... }:
{
imports = [
../sd-card/sd-image-raspberrypi-installer.nix
];
config = {
warnings = [
''
.../cd-dvd/sd-image-raspberrypi.nix is deprecated and will eventually be removed.
Please switch to .../sd-card/sd-image-raspberrypi-installer.nix, instead.
''
];
};
}