Adjust the font configuration

This commit is contained in:
Andreas Zweili 2023-09-07 18:55:12 +02:00
parent c7f4ddd9aa
commit 6ddc1e2aff
1 changed files with 10 additions and 10 deletions

View File

@ -45,18 +45,18 @@ in
# Needed when typing in passwords for full disk encryption
console.earlySetup = true;
boot.loader.systemd-boot.consoleMode = "1";
fonts.fontconfig = {
antialias = true;
subpixel = {
rgba = "none";
lcdfilter = "none";
};
};
# }
fonts.fonts = with pkgs; [
source-code-pro
];
fonts = {
fontconfig.defaultFonts = {
serif = [ "TeX Gyre Pagella" ];
monospace = [ "Source Code Pro" ];
};
fonts = with pkgs; [
gyre-fonts
source-code-pro
];
};
# Enable keyring
security.pam.services.lightdm.enableGnomeKeyring = true;