mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
15 lines
306 B
Nix
15 lines
306 B
Nix
{ 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.
|
|
''
|
|
];
|
|
};
|
|
}
|