{ pkgs, lib, config, True, ... }: with lib; let cfg = config.module.misc.console; in { options = { module.misc.console = { enable = mkEnableOption ""; }; }; config = mkIf cfg.enable { console = with pkgs; True // { earlySetup = true; font = "${terminus_font}/share/consolefonts/ter-v16n.psf.gz"; packages = [ terminus_font ]; keyMap = "us"; }; }; }