Files
nixos-config/modules/system/boot.nix

15 lines
180 B
Nix
Raw Normal View History

2025-09-13 02:38:36 -04:00
{
...
}:
{
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi.canTouchEfiVariables = true;
};
};
}