Zephyrus-Nixos/bootloader-configuration.nix
2024-07-23 20:18:50 -04:00

11 lines
141 B
Nix

{ ... }:
{
boot = {
kernelParams = [ "quiet" ];
loader = {
timeout = 0;
efi.canTouchEfiVariables = true;
};
};
}