18 lines
337 B
Nix
18 lines
337 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
device = "nodev";
|
|
};
|
|
};
|
|
|
|
kernelPackages = pkgs.linuxPackages_6_12;
|
|
kernel.sysctl."kernel.sysrq" = 1;
|
|
|
|
initrd.systemd.network.wait-online.enable = false;
|
|
};
|
|
}
|