feat: change kmscon font options

This commit is contained in:
Infinidoge 2021-09-16 15:28:53 -04:00
parent 7a3b8ef589
commit 2cd02d13ce

View file

@ -1,9 +1,14 @@
{ ... }: {
{ pkgs, ... }: {
console = {
font = "Lat2-Terminus16";
font = "DejaVuSansMono";
earlySetup = true;
packages = [ ];
packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ];
};
services.kmscon.enable = true;
services.kmscon = {
enable = true;
extraConfig = [
"font-size=14"
];
};
}