8 lines
154 B
Nix
8 lines
154 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
console = {
|
||
|
font = "${pkgs.terminus_font}/share/consolefonts/ter-u22n.psf.gz";
|
||
|
packages = with pkgs; [ terminus_font ];
|
||
|
};
|
||
|
}
|