11 lines
195 B
Nix
11 lines
195 B
Nix
{
|
|
boot.loader.systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 20;
|
|
};
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
boot.binfmt.emulatedSystems = [
|
|
"aarch64-linux"
|
|
];
|
|
}
|