feat: change kmscon font options
This commit is contained in:
parent
7a3b8ef589
commit
2cd02d13ce
1 changed files with 9 additions and 4 deletions
|
@ -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"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue