Use latest linux on quasar for controller support

This commit is contained in:
Sicheng Pan 2025-12-22 16:19:39 -08:00
parent 83aae7f48e
commit 5df9f13116
Signed by: macronova
GPG key ID: CE969670FB4B4A56
2 changed files with 3 additions and 0 deletions

View file

@ -5,6 +5,7 @@
# Configure boot
boot = {
initrd.systemd.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
loader = {
efi.canTouchEfiVariables = true;
grub = let

View file

@ -1,12 +1,14 @@
{
config,
lib,
pkgs,
...
}: {
boot = {
loader.grub.zfsSupport = true;
zfs = {
extraPools = ["zarchive"];
package = pkgs.zfs_unstable;
requestEncryptionCredentials = ["zactive/main"];
};
};