nixos-config-priv/systems/common/optional/systemdboot.nix

10 lines
140 B
Nix
Raw Normal View History

2024-06-07 11:37:13 +00:00
{
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi.canTouchEfiVariables = true;
};
}