13 lines
365 B
Nix
13 lines
365 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Latest kernel is required for proper Zen 5 / RDNA 4 (RX 9070) support.
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
# Use the systemd-based initrd; faster, supports more, replaces the legacy scripted one.
|
|
boot.initrd.systemd.enable = true;
|
|
}
|