nix-config/systems/common/optional/boot/systemdboot.nix

11 lines
141 B
Nix
Raw Normal View History

2024-06-19 12:55:46 +00:00
{
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi.canTouchEfiVariables = true;
};
}