universe/hosts/common/system/boot.nix
2025-03-03 00:00:20 +05:00

22 lines
359 B
Nix

{
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"];
};
}