Files
nix-config/systems/x86_64-linux/jallen-nas/boot.nix
mjallen18 1767debfd8 upd
2026-04-16 12:38:07 -05:00

25 lines
391 B
Nix
Executable File

{
pkgs,
...
}:
let
kernelPackages = pkgs.linuxPackages_latest;
in
{
boot = {
inherit kernelPackages;
# https://github.com/artmoty-dev/n5pro-jmb585-fix
kernelParams = [ "amd_iommu=on" ];
initrd = {
supportedFilesystems = {
bcachefs = true;
};
};
# Enable binfmt emulation for ARM
binfmt.emulatedSystems = [ "aarch64-linux" ];
};
}