blob: 5bb169bba870d283d06a89dac76ca2cc64a006d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
{ pkgs, ... }: {
console = {
earlySetup = true;
font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz";
packages = with pkgs; [ terminus_font ];
keyMap = "us";
};
}
|