From 0dd76b4b251796d0bd6ec1c939b273fda1b6c597 Mon Sep 17 00:00:00 2001 From: jasmine Date: Fri, 7 Mar 2025 21:02:52 +0800 Subject: [PATCH] unstable lts kernel + increase configuration limit --- nixos/fuchsia/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/fuchsia/hardware-configuration.nix b/nixos/fuchsia/hardware-configuration.nix index 99bfb93..a7f7b76 100644 --- a/nixos/fuchsia/hardware-configuration.nix +++ b/nixos/fuchsia/hardware-configuration.nix @@ -20,7 +20,7 @@ }; # Linux kernel used by NixOS. - kernelPackages = pkgs.linuxPackages_latest; + kernelPackages = pkgs.unstable.linuxPackages; # Parameters added to the kernel command line. kernelParams = [ # Enable amdgpu driver sysfs API that allows fine grain control of GPU @@ -37,7 +37,7 @@ }; systemd-boot = { enable = true; - configurationLimit = 3; + configurationLimit = 20; }; }; };