nixos/modules/common/boot.nix
2025-05-04 21:16:02 -04:00

9 lines
162 B
Nix

{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelParams = ["sysrq_always_enabled=1"];
};
}