From dcb0c3591ea23cb04767ea4fa162a1b22b0dcde9 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Fri, 20 Sep 2024 11:26:50 +0200 Subject: [PATCH] feat(iso): Use latest kernel, and support bcachefs at installation --- iso/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iso/configuration.nix b/iso/configuration.nix index 389e6f6..e055c7d 100644 --- a/iso/configuration.nix +++ b/iso/configuration.nix @@ -11,7 +11,7 @@ in boot = { blacklistedKernelModules = [ "snd_pcsp" ]; - kernelPackages = pkgs.linuxPackages_6_1; + kernelPackages = pkgs.linuxPackages_latest; tmp.cleanOnBoot = true; loader = { @@ -22,6 +22,7 @@ in supportedFilesystems = [ "exfat" "zfs" + "bcachefs" ]; swraid.enable = lib.mkForce false;