system/core/boot: switch to CachyOS kernel

This commit is contained in:
Anthony Rodriguez 2024-10-14 14:35:57 +02:00
parent 46ae869299
commit 262de31d36
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 7 additions and 1 deletions

View file

@ -43,6 +43,7 @@
};
}
inputs.chaotic.nixosModules.default
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
];
};
@ -74,6 +75,8 @@
extraSpecialArgs = specialArgs;
};
}
inputs.chaotic.nixosModules.default
];
};
};

View file

@ -16,11 +16,11 @@
DeviceScale=2
'';
};
consoleLogLevel = 0;
initrd.systemd.enable = true;
initrd.verbose = false;
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"quiet"
"splash"
@ -30,5 +30,8 @@
"rd.udev.log_level=3"
"udev.log_priority=3"
];
kernelPackages = pkgs.linuxPackages_cachyos;
};
chaotic.scx.enable = true; # by default uses scx_rustland scheduler
}