feat: override console font on p330

main
mandlm 2024-01-15 08:12:22 +01:00
parent 7a5e17e8d8
commit 907d306fc8
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
@ -60,7 +60,7 @@
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "ter-u24n";
font = lib.mkDefault "ter-u24n";
keyMap = "de-latin1-nodeadkeys";
packages = with pkgs; [ terminus_font ];
earlySetup = true;

View File

@ -44,4 +44,6 @@
[{ device = "/dev/disk/by-uuid/b90199d6-05e8-4994-bf9d-7b07f10d583e"; }];
networking.useDHCP = lib.mkDefault true;
console.font = "ter-u32n";
}