FrameworkNix/system/boot.nix

13 lines
179 B
Nix
Raw Normal View History

2024-03-11 17:31:39 +00:00
{
boot = {
loader = {
timeout = 0;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
};
};
};
}