From 2397656b7f401a0a1efe36de93ad3fc9bc5e4f0d Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 9 Oct 2023 22:30:25 +0800 Subject: [PATCH] hosts/bootstrap: downgrade Linux kernel to 6.1 This is mainly to support zfs which is a likely future for me once I got my hands on a mini-PC server. --- hosts/bootstrap/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/bootstrap/default.nix b/hosts/bootstrap/default.nix index 25cd2887..55530f5b 100644 --- a/hosts/bootstrap/default.nix +++ b/hosts/bootstrap/default.nix @@ -16,7 +16,7 @@ }]; }; - boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_6_1; # Assume that this will be used for remote installations. services.openssh = {