Files
nixos/system/kernel.nix
T
2025-12-25 08:59:52 -06:00

14 lines
271 B
Nix

{pkgs, ...}: {
boot = {
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"
];
};
}