nix-config/_/nixos/_mixins/optional/systemd-boot.nix

9 lines
140 B
Nix

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