about summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2018-12-25 18:58:04 -0500
committerDomen Kožar <domen@enlambda.com>2018-12-26 11:03:32 +0000
commit302d53df2b79f48ea6e9f42e47dd17e561ff6433 (patch)
tree88371734224d440bd3175ae3ed5801d209658073 /nixos/modules/installer
parent207210660f2a8f178fa0dfb3fd3c35371bf9406d (diff)
downloadnixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.tar
nixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.tar.gz
nixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.tar.bz2
nixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.tar.lz
nixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.tar.xz
nixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.tar.zst
nixlib-302d53df2b79f48ea6e9f42e47dd17e561ff6433.zip
nixos/sd-image-aarch64-new-kernel: Added to release
This, paired with the previous commit, ensures the channel won't be held
back from a kernel upgrade and a non-building sd image, while still
having a new-kernel variant available.
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/cd-dvd/sd-image-aarch64-new-kernel.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/nixos/modules/installer/cd-dvd/sd-image-aarch64-new-kernel.nix b/nixos/modules/installer/cd-dvd/sd-image-aarch64-new-kernel.nix
new file mode 100644
index 000000000000..2882fbcc7305
--- /dev/null
+++ b/nixos/modules/installer/cd-dvd/sd-image-aarch64-new-kernel.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+
+{
+  imports = [ ./sd-image-aarch64.nix ];
+
+  boot.kernelPackages = pkgs.linuxPackages_latest;
+}