Files
nix-config/systems/x86_64-linux/jallen-nas/boot.nix
mjallen18 3af0d99f98 attic
2026-04-08 15:08:00 -05:00

24 lines
369 B
Nix
Executable File

{
pkgs,
...
}:
let
kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-latest-lto-zen4;
in
{
boot = {
inherit kernelPackages;
kernelParams = [ "amd_iommu=on" ];
initrd = {
supportedFilesystems = {
bcachefs = true;
};
};
# Enable binfmt emulation for ARM
binfmt.emulatedSystems = [ "aarch64-linux" ];
};
}