aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-11-12 18:04:23 +0900
committersefidel <contact@sefidel.net>2024-11-12 18:16:26 +0900
commit4c321a6f9837fe0d32f2c282b834b5577fdf354e (patch)
tree3875ee95b3e5c557cbf72663fd9d4ff65dacbf31 /nixos
parentf3947c0d2230e79a0d423b2bb1b042d34ffde1a3 (diff)
downloadnixrc-4c321a6f9837fe0d32f2c282b834b5577fdf354e.zip
feat(nixos/haruka): explicitly follow linux LTS kernel
Diffstat (limited to 'nixos')
-rw-r--r--nixos/haruka/configuration.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/haruka/configuration.nix b/nixos/haruka/configuration.nix
index 89050f4..794eda0 100644
--- a/nixos/haruka/configuration.nix
+++ b/nixos/haruka/configuration.nix
@@ -16,7 +16,8 @@
sudo.wheelNeedsPassword = false;
};
- boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
+ # Use latest LTS kernel (https://github.com/NixOS/nixpkgs/pull/341596)
+ boot.kernelPackages = pkgs.linuxPackages;
boot.kernelParams = [
"console=tty1"
"i915.fastboot=1"