summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2021-05-05 15:06:20 -0400
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2021-05-05 16:19:13 -0400
commit6cb46a389741f7916d2c5746d655c76f9333b148 (patch)
tree40c34683a8914781df44d6d23895b4531322562b /nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix
parentcaba0b6a233503262879e62de7911b8549dce795 (diff)
downloadnixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.tar
nixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.tar.gz
nixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.tar.bz2
nixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.tar.lz
nixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.tar.xz
nixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.tar.zst
nixpkgs-6cb46a389741f7916d2c5746d655c76f9333b148.zip
sd_image_raspberrypi4: Remove, as planned initially
The replacement is the generic AArch64 image.

From there, you can customize an image that works better for your
needs, if need be.
Diffstat (limited to 'nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix
deleted file mode 100644
index 79db1fa29bc..00000000000
--- a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi4.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, ... }:
-{
-  imports = [
-    ../sd-card/sd-image-raspberrypi4-installer.nix
-  ];
-  config = {
-    warnings = [
-      ''
-      .../cd-dvd/sd-image-raspberrypi4.nix is deprecated and will eventually be removed.
-      Please switch to .../sd-card/sd-image-raspberrypi4-installer.nix, instead.
-      ''
-    ];
-  };
-}