Fix font issues

This commit is contained in:
Paul-Henri Froidmont 2024-07-03 05:42:05 +02:00
parent 28b58fe7ea
commit f5bb64cfe9
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
2 changed files with 6 additions and 1 deletions

View file

@ -23,9 +23,11 @@ in {
fonts = {
packages = with pkgs.unstable; [
corefonts # Microsoft free fonts
noto-fonts-emoji
meslo-lg
(nerdfonts.override { fonts = [ "Meslo" "NerdFontsSymbolsOnly" ]; })
];
fontconfig.defaultFonts = { monospace = [ "MesloLGS Nerd Font" ]; };
fontconfig.defaultFonts = { monospace = [ "MesloLGS Nerd Font Mono" ]; };
};
programs.adb.enable = true;