13 lines
197 B
Nix
13 lines
197 B
Nix
{ ... }:
|
|
|
|
{
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
}
|