unstable lts kernel + increase configuration limit

This commit is contained in:
♥ Minnie ♥ 2025-03-07 21:02:52 +08:00
parent 3dcfac6d31
commit 0dd76b4b25
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -20,7 +20,7 @@
}; };
# Linux kernel used by NixOS. # Linux kernel used by NixOS.
kernelPackages = pkgs.linuxPackages_latest; kernelPackages = pkgs.unstable.linuxPackages;
# Parameters added to the kernel command line. # Parameters added to the kernel command line.
kernelParams = [ kernelParams = [
# Enable amdgpu driver sysfs API that allows fine grain control of GPU # Enable amdgpu driver sysfs API that allows fine grain control of GPU
@ -37,7 +37,7 @@
}; };
systemd-boot = { systemd-boot = {
enable = true; enable = true;
configurationLimit = 3; configurationLimit = 20;
}; };
}; };
}; };