ADD: preload nix

This commit is contained in:
kenji
2025-12-25 08:59:52 -06:00
parent 2d9f95e8e5
commit d96148bf06
5 changed files with 169 additions and 20 deletions
+11 -9
View File
@@ -1,11 +1,13 @@
{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"
];
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"
];
};
}