fonts & kmscon

This commit is contained in:
chaos 2024-09-04 14:14:34 +01:00
parent 37da8028c1
commit 749088bea6
No known key found for this signature in database
3 changed files with 18 additions and 2 deletions

View file

@ -88,6 +88,18 @@ in {
"fbdev" "fbdev"
]; ];
services.kmscon = {
enable = true;
fonts = [
{
name = "Comic Code";
package = pkgs.comic-code;
}
];
};
hardware.video.hidpi.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
config.boot.kernelPackages.cpupower config.boot.kernelPackages.cpupower
raspberrypi-utils raspberrypi-utils

View file

@ -1,5 +1,6 @@
{tree, ...}: { {tree, ...}: {
imports = with tree.profiles.home-manager; [ imports = with tree.profiles.home-manager; [
base base
dev.small
]; ];
} }

View file

@ -1,7 +1,10 @@
{...}: { {lib, ...}: let
inherit (lib.modules) mkDefault;
in {
i18n.defaultLocale = "en_GB.UTF-8"; i18n.defaultLocale = "en_GB.UTF-8";
console = { console = {
font = "Lat2-Terminus16"; earlySetup = true;
font = mkDefault "Lat2-Terminus16";
keyMap = "uk"; keyMap = "uk";
}; };
} }