This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/global/font-configuration.nix

39 lines
897 B
Nix
Raw Normal View History

{pkgs, ...}: {
fonts= {
2023-06-21 05:46:27 +00:00
fontDir.enable = true;
fonts = with pkgs;[
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
liberation_ttf
fira-code
fira-code-symbols
source-han-sans
source-han-serif
2023-06-27 02:44:31 +00:00
source-han-mono
source-code-pro
font-awesome_5
powerline-fonts
powerline-symbols
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
];
fontconfig.cache32Bit = true;
fontconfig.defaultFonts = {
serif = [
2023-06-27 02:44:31 +00:00
"Source Han Serif SC"
];
sansSerif = [
2023-06-27 02:44:31 +00:00
"Source Han Sans SC"
];
monospace = [
"Fira Code"
2023-06-27 02:44:31 +00:00
"Source Han Mono SC"
];
};
};
}