nixos/machines/thinkman/boot.nix
2023-03-19 13:42:14 +01:00

16 lines
270 B
Nix

{ config, lib, pkgs, ... }:
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
efi.canTouchEfiVariables = true;
};
};
}