10 lines
155 B
Nix
Executable file
10 lines
155 B
Nix
Executable file
{ pkgs, ... }:
|
|
|
|
{
|
|
console = {
|
|
earlySetup = true;
|
|
font = "ter-124b";
|
|
useXkbConfig = true;
|
|
packages = with pkgs; [ terminus_font ];
|
|
};
|
|
}
|