17 lines
257 B
Nix
17 lines
257 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
boot = {
|
|
kernelPackages =
|
|
lib.mkIf (!config.marleycfg.profiles.server)
|
|
pkgs.linuxPackages_xanmod;
|
|
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
}
|