From a0eb8a5f82cb3bbe6930acd5f175c373ad06c0ad Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 10 Jun 2022 20:05:19 +0200 Subject: [PATCH] nixos-module/defaults: pin kernelPackage to 5.17 for zfs build compatibility --- nix/nixos-module/defaults.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/nixos-module/defaults.nix b/nix/nixos-module/defaults.nix index 98e9e03..2e28949 100644 --- a/nix/nixos-module/defaults.nix +++ b/nix/nixos-module/defaults.nix @@ -9,7 +9,7 @@ ]; boot.tmpOnTmpfs = true; # Includes wireguard - boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_5_17; # Keep building boot.zfs.enableUnstable = true;