{ lib, config, ... }: let inherit (lib) mkIf; host = config.systemModules.host; in { config = mkIf (host.type != "phone") { boot.loader = { systemd-boot = { enable = true; consoleMode = "max"; }; efi.canTouchEfiVariables = true; }; }; }