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

10 lines
140 B
Nix
Raw Normal View History

{
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi.canTouchEfiVariables = true;
};
}