fix: switch to kmscon font definiion
This commit is contained in:
parent
2cd02d13ce
commit
82561a6195
1 changed files with 5 additions and 4 deletions
|
@ -1,14 +1,15 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
console = {
|
console = {
|
||||||
font = "DejaVuSansMono";
|
# font = "DejaVuSansMono";
|
||||||
earlySetup = true;
|
earlySetup = true;
|
||||||
packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ];
|
packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.kmscon = {
|
services.kmscon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = [
|
extraConfig = ''
|
||||||
"font-size=14"
|
font-size=14
|
||||||
];
|
font-name=DejaVuSansMono
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue