nix-config/hosts/common/optional/systemd-boot.nix

11 lines
171 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
2024-05-24 13:56:29 +02:00
configurationLimit = 42;
2023-12-24 11:16:59 +01:00
};
efi.canTouchEfiVariables = true;
};
}