universe/profiles/boot/systemd-boot.nix

12 lines
187 B
Nix

{ ... }: {
boot.loader = {
systemd-boot = {
enable = true;
editor = false;
consoleMode = "2";
};
efi.canTouchEfiVariables = true;
timeout = 3;
};
}