22 lines
359 B
Nix
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"];
|
||
|
};
|
||
|
}
|