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

10 lines
140 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi.canTouchEfiVariables = true;
};
}