universe/hosts/common/system/boot.nix

23 lines
411 B
Nix
Raw Normal View History

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