nixos/legacy/modules/systemduefi.nix
2022-12-05 20:32:39 +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;
};
};
}