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 # Configure boot
boot = { boot = {
initrd.systemd.enable = true; initrd.systemd.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
loader = { loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
grub = let grub = let

View file

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