14 lines
223 B
Nix
14 lines
223 B
Nix
{
|
|
flake.modules.nixos.boot = {
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
};
|
|
}
|