nixos/legacy/modules/systemduefi.nix

17 lines
270 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, lib, pkgs, ... }:
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
2022-06-03 17:59:24 +02:00
efi.canTouchEfiVariables = true;
2020-11-16 21:14:46 +01:00
};
};
}