11 lines
161 B
Nix
11 lines
161 B
Nix
{ config, ... }:
|
|
{
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 5;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
}
|