Move some bootloader stuff into common instead.

This commit is contained in:
jay
2025-06-29 19:24:16 -04:00
parent c5afa53ea5
commit 3ded53b18f
2 changed files with 11 additions and 37 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, config, ... }: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_xanmod_stable;
extraModulePackages = with config.boot.kernelPackages; [ xone ];
};
}