universe/profiles/core/console.nix

16 lines
325 B
Nix

{ pkgs, ... }: {
console = {
# font = "DejaVuSansMono";
earlySetup = true;
packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ];
};
services.kmscon = {
enable = true;
hwRender = true;
extraConfig = ''
font-size=14
font-name=DejaVuSansMono
'';
};
}