universe/hosts/common/boot/default.nix

22 lines
359 B
Nix
Raw Normal View History

2025-03-02 11:53:58 +00:00
{
lib,
pkgs,
config,
...
}: {
boot = {
kernelPackages = pkgs.linuxPackages_zen;
kernelModules = [];
extraModulePackages = with config.boot.kernelPackages; [
amneziawg
];
loader.systemd-boot = {
enable = true;
};
loader.efi.canTouchEfiVariables = true;
binfmt.emulatedSystems = ["aarch64-linux"];
};
}