added kernel

This commit is contained in:
kenji
2025-12-25 08:53:23 -06:00
parent c604816aa9
commit 2d9f95e8e5
6 changed files with 21 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
{pkgs, ...}: {
kernelPackages = pkgs.linuxPackages_cachyos; # from chaotic input
kernelParams = [
"quiet"
"splash"
"intremap=on"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
}