nix-config/hosts/common/boot.nix
2022-12-22 22:38:12 -03:00

14 lines
229 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
boot = {
loader = {
timeout = 1;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
};
};
};
}