nixos/extra/systemduefi.nix
2021-02-28 22:16:36 +01:00

15 lines
231 B
Nix

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